Going to a Listbox Row

A

Al Camp

I'm trying to send the cursor to a specific row in a listbox, but
I don't want to "select" the row.
I'm using...
Dim Lindex as Integer (example Lindex = 7)
lstGetValue.Selected(Lindex) = True

This moves the cursor to the 7th record in the Listbox, but also
"selects" the row.

Is it possible to just "goto" a row without Selecting?

Thanks in advance,

Al Camp
 
Top