That should work it may be case sensitive:
code:
<Control xsi:type="CheckBoxControl" Id="blah" Enabled="False">
<Position Top="35" Width="10" Left="90" />
</Control>
quote:
Originally posted by wincy
I found also:
CheckBoxControl/CustomLook/Disabled/Checked/Element
That is if you are giving the control a custom look.
What you can do otherwise is in your script disable it
code:
var pWin = MsgPlus.CreateWnd('mywindow.xml', 'mywindow');
Interop.Call('user32', 'EnableWindow', pWin.GetControlHandle('blah'), false);