How can I select a ListBox item with the right mouse button?
Thanks!
Printable View
How can I select a ListBox item with the right mouse button?
Thanks!
hmmm....
But I'm not able to figure out what the clicked item is yet, maybe in the meantime someone else can help you. I'll try to figure it out for ya.Code:Private Sub List1_MouseDown(Button As Integer, Shift As Integer, X As Single, Y As Single)
If Button = 2 Then
List1.Selected(1) = True
End If
End Sub
Hey...
...I found it!
http://www.mvps.org/vbnet/code/lista...eclick-two.htm
Have fun :)
WOW!!
Looks like that'll work!
Thanks a TON!!