本帖最后由 alwtyp 于 2013-5-1 21:33 编辑
各位高手,请问OPENDCL怎样才能退出对话框再返回?
 - (Defun C:ABC(/)
- (Setvar "Cmdecho" 1)
- ;(Setq Block (Ssget))
- (Command "Opendcl")
- (Setvar "Cmdecho" 1)
- ;(_Load_ODCL_Frame nil nil)
- (Dcl_Project_Load "ABC.Odcl");加载对话框
- (Dcl_Form_Show ABC_FORM1);启动对话框界面
- (Princ)
- )
- (defun c:abc_Form1_TextButton1_OnClicked (/)
- (Dcl_Form_Close abc_Form1)
- (Setq Block (Ssget))
- (Dcl_Form_Show ABC_FORM1)
- )
|