How to get position of the selected cell of a listbox?

  • Thread starter Thread starter sara
  • Start date Start date
S

sara

When a user double clicks on a row in a list box,I want to get the position
of the selected row so i can use that position to dynamically make a text box
appear there so as to make it appear editable.Any thoughts?
 
sara said:
When a user double clicks on a row in a list box,I want to get the position
of the selected row so i can use that position to dynamically make a text box
appear there so as to make it appear editable.Any thoughts?


You can use the ListIndex property for that.

(it might not work correctly for a multiselect listbox)
 
Back
Top