Hello,
After reading in a list of items to my listbox (with checkboxes enabled). How can I make it so they can't uncheck the boxes, but still be able to double-click on the listed item and run my code underneath ?
Thanks,
Printable View
Hello,
After reading in a list of items to my listbox (with checkboxes enabled). How can I make it so they can't uncheck the boxes, but still be able to double-click on the listed item and run my code underneath ?
Thanks,
This will do it.------------------Code:Private Sub List1_Click()
If List1.Selected(List1.ListIndex) = False Then
List1.Selected(List1.ListIndex) = True
End If
End Sub
Marty