Forum Discussion
tristaanogre
14 years agoEsteemed Contributor
You're using "ClickButton" on a check box. I'm not certain that will work at all.
As mentioned above, you should look to see if there is a "Checked" property you can use, a "ClickChecked" method you can use, or a "SetChecked" method that you can use to set the value of the check box. Sample code is as follows:
Checked Property
ClickChecked Method
SetChecked Method
Which technique you use is all going to be dependent on what your component supports.
As mentioned above, you should look to see if there is a "Checked" property you can use, a "ClickChecked" method you can use, or a "SetChecked" method that you can use to set the value of the check box. Sample code is as follows:
Checked Property
MyApp.MyCheckBox.Checked = true
ClickChecked Method
MyApp.MyCheckBox.ClickChecked(true)
SetChecked Method
MyApp.MyCheckBox.SetChecked(true)
Which technique you use is all going to be dependent on what your component supports.