Hi Morgan
You may also find that your checkbox control has a native
Set_Checked method, that accepts either a true or false parameter. I find that this tends to make the code slightly easier to read. For example, if your control is referenced by the variable
chkCtrl, then you could use something like:
chkCtrl.Set_Checked(true) 'this will check the checkbox control.
chkCtrl.Set_Checked(false) 'this will un-check the checkbox control.
Regards
Stephen.