I have developed a user control inherited from a
CheckedListBox.
This control has a Text property which I have overridden
to accept and return a string representation of selected
checkboxes.
I then implemented Data Binding, and it seems to work
great translating string to checkboxes when READING from
the database (when moving between records, etc), but it
NEVER calls my code to translate checked boxes back into
string (Text {get} and ToString()) when departing record,
etc.
CONTROL
========
-- Data in string ABCD
A would be checked
B would be checked
C would be checked
D would be checked
E would NOT be checked
Is there something I need to do (trigger a "changed"
event or something) to indicate that the value has
changed and needs to be refreshed?
Thanks for any assistance,
Klynt Klimek