I'm using VS 2008 C# Express edition here.
Try to use a CheckedListBox, which I think is just a fancy ListBox.
In designmode I can set the property
SelectionMode :
None (? rather strange for what I think is a list of checkboxes)
One
MultiSimple
MultiExtended
When I select one of the last two options I get a messagebox telling me: "Property value is not valid".
When I want to do this programmatically with checkedListBox1.SelectionMode = SelectionMode.MultiSimple; it compiles but I get an ArgumentException.
What am I doing wrong?(Perhaps forgot to set another property?)
Because else I don't see the need for a bunch of checkboxes and you are only allowed to select one of them.