Recent posts

#11
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)) )
)

#12
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
#13
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???
#14
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.
#15
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!
#17
Runtime/AutoLISP / Re: OpenDCL for Autocad 2025
Last post by altver - March 01, 2025, 11:12:21 AM
How to make the latest development build?
#18
Runtime/AutoLISP / Re: OpenDCL for Autocad 2025
Last post by altver - March 01, 2025, 11:05:05 AM
I wrote the program 10 years ago and it worked in 2024
And now it dont working...
#19
Runtime/AutoLISP / Re: OpenDCL for Autocad 2025
Last post by owenwengerd - March 01, 2025, 10:50:16 AM
There is no new binary for Acad 2025. Make sure you're using the latest development build, then it should work.
#20
Runtime/AutoLISP / OpenDCL for Autocad 2025
Last post by altver - March 01, 2025, 10:33:22 AM
Will OPENDCL work with AUTOCAD 2025
where will I find the file OpenDCL.x64.25.arx for AUTOCAD 2025?
Thank!!!