Any ideas anyone?
Cheers
Printable View
Any ideas anyone?
Cheers
You don't rename an item. You simply set it. If you've added the text "Hello World" to your list and its at index 3 then you simply change it by setting the item at index 3:The Items property of a CheckedListBox is just a collection like any other, so you manipulate the items it contains like any other collection.VB Code:
myCheckedListBox.Items(3) = "Goodbye Cruel World"