Hi!
First of all sorry because I don't know if this question is correct to put here.
I have a little problem with a little VB.NET application that I am building. This is a winforms applications not WPF.
I have a checkedlistbox with a few items and I want to allow user to select more than one using arrows keys or mouse clicks combined with shift and ctrl keys so I set selectionMode property to multiExtended.
In design time it is not possible I get an error: It says value property is not valid.
and if I set it in runtime by doing:
clbEmployees.SelectionMode = SelectionMode.MultiSimple
I get an error too: It says CheckedListBox is not compatible with multiple selection.
How could I do this?
Thanks!