CheckedListBox- default highlighted item- need to un-highlight

  • Thread starter Thread starter ujjc001
  • Start date Start date
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
 
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
 
Back
Top