General Setup To cause the items in the CheckedListBox to be checked when you click them the first time, set the control’s CheckOnClick property to True. Clear All Items clbMyCheckedList->Items->Clear(); Clear Individual Items clbMyCheckedList->Items->RemoveAt(0); //Specify index position Add New Items clbMyCheckedList->BeginUpdate(); //Stop painting of the ListBox as items are added clbMyCheckedList->Items->Add(“Entry 1”, true); clbMyCheckedList->EndUpdate(); How […]