OpenDCL Forums

OpenDCL => Runtime/AutoLISP => Topic started by: Atwist on August 23, 2012, 11:52:27 PM

Title: dcl_Project_Unload
Post by: Atwist on August 23, 2012, 11:52:27 PM
Hello
Can anyone tell me why this does not work?
Stayed here on the forum and looked in the help wanted but I is not wiser.

Code (autolisp) Select
(defun c:cadtool_Main_cmdclose_OnClicked (/)
  (dcl_Project_Unload "Cadtool")
)
Title: Re: dcl_Project_Unload
Post by: vladgothe on August 24, 2012, 01:18:06 AM
Try this:
Code (autolisp) Select

(defun c:cadtool_Main_cmdclose_OnClicked (/)

  (dcl_Project_Unload "Cadtool" T)

)
Title: Re: dcl_Project_Unload
Post by: Atwist on August 24, 2012, 01:26:37 AM
YES   :D

Thanks