2009-12-11 23:58 UTC
;**** the Draw punches check box ****
If I enter the line command, start drawing lines, then cancel out....
Then go to the check box labels draw punches..... it wigs out and appears to attempt to resume the "line" command....
Am I not initiating something properly?
below is the autolisp code for the check box....
(defun c:Parametrics_PM_synthesis_CheckBox1_OnClicked (nValue /)
(if (= nVAlue 1)
(progn
(ied_punches)
(ied_headed_punches)
(make_edm_punch_from_groups)
(make_headed_punch_from_groups)
(setq make_punches 1);this maybe should be based on successfull completion....
)
(progn
(ied_punches)
(ied_headed_punches)
(setq make_punches 0)
)
);end if
(save_all_completed_operation_values_to_db)
)
