2014-02-14 15:17 UTC
I have the following function...note that the GUI is modeless.
(DEFUN c:GBSCC_FormGBSCC_BTNIsolateLayers_OnClicked (/)
(DCL_FORM_HIDE GBSCC_FormGBSCC T)
(alert "Select Layers to Isolate and press {ENTER}")
(COMMAND "layiso")
(DCL_FORM_SHOW GBSCC_FormGBSCC)
)
What is happening is that the user has to either drag the GUI out of the way, or close it, to execute the selection process from COMMAND "layiso".
What I want to happen is that the GUI remains hidden until the COMMAND "layiso" has been completed.
Anyone have any suggestions?
(DEFUN c:GBSCC_FormGBSCC_BTNIsolateLayers_OnClicked (/)
(DCL_FORM_HIDE GBSCC_FormGBSCC T)
(alert "Select Layers to Isolate and press {ENTER}")
(COMMAND "layiso")
(DCL_FORM_SHOW GBSCC_FormGBSCC)
)
What is happening is that the user has to either drag the GUI out of the way, or close it, to execute the selection process from COMMAND "layiso".
What I want to happen is that the GUI remains hidden until the COMMAND "layiso" has been completed.
Anyone have any suggestions?