Browse by Tags
All Tags » CheckedListBox » Using Controls (RSS)
Sorry, but there are no more tags available to filter with.
-
|
In Usenet posts, MS has acknowledged this bug. The problem is essentially that any time the visibility changes on a CheckedListBox, it loses its previous selections. Naturally this happens all the time in tab controls when changing tabs. This derived...
|
-
|
To check all items, you can use code such as: [C#] for ( int i=0; i < checkedListBox1.Items.Count; ++i ) checkedListBox1.SetItemChecked( i, true ); [Visual Basic] Dim i as Integer For i = 0 To checkedListBox1.Items.Count - 1 checkedListBox1.SetItemChecked...
|