quote:
Originally posted by Leroux
Actually matty, yeah. The send link checkbox is exactly what I mean, but with multiple radio controls all to be activated/deactivated according to the checkbox.
In that case, what roflmao456
has posted can help you out...
for example:
code:
var checked = PlusWnd.Button_IsChecked("yourCheckbox");
var radiocontrols = new Array("RadA", "RadB", "RadC", "anyOtherRadioControl...");
for (var i in radiocontrols) Interop.Call("user32","EnableWindow", PlusWnd.GetControlHandle(radiocontrols[i]), checked);