CheckedListBox- default highlighted item- need to un-highlight

U

ujjc001

I data bind a CheckedListBox and when it displays the first item is
hightlighted. I need to get that un-highlighted in some way, shape,
or form.
This is for ethical data and I simply cannot have one "standing out"
from the rest.
Thanks.
Jeff
 
U

ujjc001

FYI, I fixed it. I thought I had tried "everything" before, but I
must have not seen the selected property, rather just seen the
"checked" property.

For i As Integer = 0 To clb.Items.Count - 1
clb.SetSelected(i, False)
Next
 

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

Top