Recent posts

#1
Runtime/AutoLISP / modeless form
Last post by ymg3 - March 22, 2025, 05:48:01 AM
Why is there no Title Bar Icon property for form in Modeless.

ymg
#2
Runtime/AutoLISP / Re: ODCL for 2026?
Last post by owenwengerd - March 12, 2025, 06:25:16 PM
Usually soon after the public release.
#3
Runtime/AutoLISP / ODCL for 2026?
Last post by kenkrupa - March 12, 2025, 10:59:01 AM
Any idea when available?
#4
Runtime/AutoLISP / Re: dcl-Form-Close It's not wo...
Last post by tujn08 - March 04, 2025, 07:43:45 AM
(setq pt (getpoint "sdfg"))
   (command "_point" pt)

I found out that any command via command causes such a problem. And after closing AutoCAD, some background task starts running in the processes for AutoCAD and loading the processor.

how do I make the commands work correctly?
#5
Runtime/AutoLISP / dcl-Form-Close It's not workin...
Last post by tujn08 - March 04, 2025, 07:24:52 AM
I have a problem. I want to close the form to draw a table using lisp. The form closes, immediately writes that the point is incorrect, requests the point again, Then the form opens. What to do?

(defun c:Untitled2/Dcl-2/TB6#OnClicked (/)
  ;(get_data)
(dcl-Form-Close Untitled2/Dcl-2)
;(dcl-Form-Hide Untitled2/Dcl-2)
(princ)
(setq pt (getpoint "click"))
(command "_.table" "_A" 4 "_S" "Standard" "_W" 60 pt (list (+ (* 60 4) (nth 0 pt)) (nth 1 pt) (nth 2 pt)) )
)

#6
Runtime/AutoLISP / Re: OpenDCL for Autocad 2025
Last post by altver - March 04, 2025, 04:18:35 AM
And how did my program work before?
For example, in Autocad2024:
loaded the OpenDCL.x64.24.arx file
and my program worked correctly
#7
Runtime/AutoLISP / Re: OpenDCL for Autocad 2025
Last post by altver - March 04, 2025, 04:11:22 AM
Do I understand correctly?
Every computer should have OPENDCL installed?
Otherwise, the program will not work???
#8
Runtime/AutoLISP / Re: OpenDCL for Autocad 2025
Last post by owenwengerd - March 03, 2025, 10:36:58 AM
You should download and install the Current Build Windows Installer .MSI. After successful installation, start Acad 2025 and enter the OPENDCL command at the command line to load the runtime. From LISP, you should use (command "OPENDCL") to ensure the runtime is loaded. For testing, you can try the command OPENDCLDEMO.
#9
Runtime/AutoLISP / Re: OpenDCL for Autocad 2025
Last post by altver - March 03, 2025, 04:41:57 AM
error: no function definition: dcl_project_load

Can you explain in detail what I should do?
Thank you very much!