checkedlistbox

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

how do I uncheck the selected items in the checklistbox?

i did this... but does not work ...!!

CheckedListBox1.ClearSelected()
 
Search (in IDE help) for SetSelected which shows how to do this.
 
amruta said:
how do I uncheck the selected items in the checklistbox?

The checkedlistbox control only supports selecting a single item. Are you
referring to checked items?

\\\
With Me.CheckedListBox1
Do While .CheckedIndices.Count > 0
.SetItemChecked(.CheckedIndices(0), False)
Loop
End With
///
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top