DCL文件
- DA : dialog
- {
- label = "A";
- ok_cancel;
- }
- DB : dialog
- {
- label = "B";
- ok_cancel;
- }

- (defun C:TT (/ what_next)
- (while (/= what_next 0)
- (new_dialog "DA" (load_dialog "A.DCL"))
- (setq what_next (start_dialog))
- (if (= what_next 1)
- (progn
- (new_dialog "DB" (load_dialog "A.DCL"))
- (setq what_next (start_dialog))
- )
- )
- )
- )
|