2009-01-04 11:34 UTC
HI javascript:void(0);
The code that I posted doesn't work with Dockable Form.
That is normal?
The code that I posted doesn't work with Dockable Form.
That is normal?
(defun c:DclForm1_OK_OnClicked ()
(dcl_Form_Close diatest_DclForm1)
(setq nextDlg 2)
)
(defun c:DclForm2_OK_OnClicked ()
(dcl_Form_Close diatest_DclForm2)
(setq nextDlg 1)
)
;;;
(defun c:test (/ nextDlg)
(setq nextDlg 1)
(while (/= nextDlg NIL)
(cond
((= nextDlg 1)
(setq nextDlg Nil)
(dcl_Form_Show diatest_DclForm1)
)
((= nextDlg 2)
(setq nextDlg nil)
(dcl_Form_Show diatest_DclForm2)
)
) ;_ fim de cond
) ;_ fim de while
) ;_ fim de defun