2014-08-15 18:29 UTC
maybe someone can provide a little guidance
im wanting to close a form when pressing a button
set my vars and do my thing
then close the dialog and reopen the same dialog, clear the content for use in another application within the same program.
i can get the dialog to close... but getting it to reopen is where im going wrong.
any help is appreciated
im wanting to close a form when pressing a button
set my vars and do my thing
then close the dialog and reopen the same dialog, clear the content for use in another application within the same program.
i can get the dialog to close... but getting it to reopen is where im going wrong.
any help is appreciated
(defun c:newt/Form3/TextButton1#OnClicked (/)
(if (> (length _list) 1)
"do my thing"
;close dialog
(dcl-Form-Close newt/Form3)
;clear info
;reopen the same dialog for another use
(dcl-Form-Show newt/Form3)
)
)