Good day! so delete all the ticked entries from CheckedListBox
For Each item In CheckedListBox1.CheckedItems.OfType(Of String)().ToList()
CheckedListBox1.Items.Remove(item)
Next item
Tell me how to delete the selected entry in the CheckedListBox?

in the picture the record with the name 3 is highlighted. Is it possible and how to delete it without putting a check?
Here is a simple example for
Form code