AutoCAD - Dialog Control Language (DCL) - Minimal Example | What links here? |
// This Dialog box displays a line of text with an OK button FIRSTDCL : dialog { label = "My First Dialog Box"; : text { label = "Hello there, this is my first dialog box"; } ok_only; }
(defun c:FIRSTDCL () (defun do_exit () (done_dialog 1) ) (setq SRT (load_dialog "FIRSTDCL")) (if (> SRT 0) (progn (new_dialog "FIRSTDCL" SRT) (action_tile "accept" "(do_exit)") (start_dialog) (unload_dialog SRT) ) ) )
filename: | AutoCAD - Dialog Control Language (DCL) - Minimal Example |
filename: | AutoCAD%20%2D%20Dialog%20Control%20Language%20%28DCL%29%20%2D%20Minimal%20Example |
last edit: | July 27 2013 15:40:56 (4244 days ago) |
ct | = 1741678803.000000 = March 11 2025 03:40:03 |
ft | = 1374954056.000000 = July 27 2013 15:40:56 |
dt | = 366724747.000000 |