Hi
I have a list box set to the checkbox style.
I want to know if it is possible to disable a single list item or is it only possible to disable the whole control?
Thanx
G:)
Printable View
Hi
I have a list box set to the checkbox style.
I want to know if it is possible to disable a single list item or is it only possible to disable the whole control?
Thanx
G:)
Geoff. I don't think it can be done.
Fair enough
Thanks anyway
G:)
you could fake it...
maybe also...Code:Private Sub List1_Click()
If List1.Selected(1) = True Then
Beep
List1.Selected(1) = False
End If
End Sub
remove the item...then re-add it as "....."
But with that, the user still can selected the item and a select-deselect effect will be saw. Not a good method too.