Valhalla Legends Archive

Programming => Battle.net Bot Development => Topic started by: Camel on May 04, 2003, 03:42 PM

Title: [vb] solution to "listview wont hightlight what i clicked on" problem
Post by: Camel on May 04, 2003, 03:42 PM
several people have asked me about this same problem, so i figgured i should post the solution

Private Sub lvUsers_MouseDown(Button As Integer, Shift As Integer, X As Single, Y As Single)
   On Error Resume Next
   lvUsers.SelectedItem = lvUsers.HitTest(X, Y)
End Sub