OpenDCL Forums

OpenDCL => Runtime/AutoLISP => Topic started by: dsm_dude on October 31, 2023, 01:23:00 PM

Title: Option Button
Post by: dsm_dude on October 31, 2023, 01:23:00 PM
What am I doing wrong?

I want the option buttons to trigger a command.

(defun c:FindMS_T/Form1/OptionList1#OnSelChanged (ItemIndexOrCount Value /)
  (cond
    ((= uOpt 0)(command "_IsolateObjects" "P" ""))
    ((= uOpt 1)(command "_UnisolateObjects"))
    );cond
)




Title: Re: Option Button
Post by: owenwengerd on October 31, 2023, 06:36:50 PM
You can try changing the form's EventInvoke property (http://www.opendcl.com/HelpFiles/index.php?page=Reference/Property/EventInvoke.htm) to 1. See the last paragraph on this page:
http://www.opendcl.com/HelpFiles/index.php?page=Concepts/Modality.htm (http://www.opendcl.com/HelpFiles/index.php?page=Concepts/Modality.htm)
Title: Re: Option Button
Post by: dsm_dude on November 01, 2023, 04:00:41 AM
I just double checked and it is set to 1.
Title: Re: Option Button
Post by: Fred Tomke on November 01, 2023, 06:31:51 AM
Hi, I had a test with you lisp and project file. But both files do not belong together. I had some search & replace but it still not show without errors. So I stop testing.
With regards, Fred