I have two ListView controls with checkboxes enabled. Both ListViews have the same entries. The one ListView is for entries that must be included and the second ListView is for entries that must be excluded.
How can I disable/enable an entry in one ListView when the equivalent entry in the other ListView is selected/deselected?
Say, for instance, both ListViews contain the words Red, Blue, Green, Black.
When the user select the checkbox next to Red in the first ListView the entry for Red in the second ListView must be disabled so that Red can't be selected in the second ListView. And when the checkbox next to red is deselected in the first ListView then the Red entry in the second ListView must be enabled again so that it is available for selection again if needed.
Is this possible?
PS. It must work both ways.
How can I disable/enable an entry in one ListView when the equivalent entry in the other ListView is selected/deselected?
Say, for instance, both ListViews contain the words Red, Blue, Green, Black.
When the user select the checkbox next to Red in the first ListView the entry for Red in the second ListView must be disabled so that Red can't be selected in the second ListView. And when the checkbox next to red is deselected in the first ListView then the Red entry in the second ListView must be enabled again so that it is available for selection again if needed.
Is this possible?
PS. It must work both ways.