Is it possible to find the row number of a selected row of a dataset?(SelectedIndex is being used on a listBox with data populated from the dataset)
thanx
Printable View
Is it possible to find the row number of a selected row of a dataset?(SelectedIndex is being used on a listBox with data populated from the dataset)
thanx
this should work
VB Code:
dim i as integer = e.Item.ItemIndex()
kind regards
Henrik