Hello,

I have a listbox, and I am using a SendMessage API call in the MouseMove event in order to get the index of the list item over which the cursor is hovering. I then want to highlight that item in the list, but WITHOUT sending a click event. Currently, I use the folllowing code...

VB Code:
  1. List1.Selected(index) = true

Whereas, that does highlight the listbox entry (index), it also sends a click event, which i do not want to do until the end user actually clicks the mouse.