Hi Woody,
I don't know what you mean by "checkbox field", but the WinForms CheckBox
requires a value from the enum CheckState, ie. CheckState.Checked,
CheckState.Indeterminate or CheckState.Unchecked - it won't even accept True!
(but it will allow False as this matches Unchecked).
In answer to your earlier RadioButton question, and perhaps to what you
want with your CheckBoxes, I suggest that you have hidden Controls that you
<know> will accept your data, eg a TextBox. These Controls can then handle
their change event and set their "partner" Control accordingly.
Hope this helps - I can see your frustration :-).
Regards,
Fergus
|