Pizzor2000
10-19-2009, 09:00 AM
I have a class in a VB6 application that contains quite a few Boolean properties (for example, let's use WillUseWidgets, WillUseGizmos, WillUseDingbats, etc.).
What I need is an interface to allow the user to switch the value of each of these properties on an instance of the class. I am thinking about using a ListBox with the Checkbox style, and adding a list item for each of the Boolean properties. The user could then check/uncheck an item to change the corresponding property.
I want to know the best way to cross-reference an array of list items with properties of an object. Any thoughts?
What I need is an interface to allow the user to switch the value of each of these properties on an instance of the class. I am thinking about using a ListBox with the Checkbox style, and adding a list item for each of the Boolean properties. The user could then check/uncheck an item to change the corresponding property.
I want to know the best way to cross-reference an array of list items with properties of an object. Any thoughts?