Hi,
I'm using ListView and I may be missing the point, but how do I get the contents value of a cell in any column on the selected row?
I am trying to do the same as the table control method
R= Table1.SelectedRow
x= Table1.Cell("Column2",r)
y=Table1.Cell("Column3",r)
Can it be done with Listview or should I use something else (I quite like the look of listview)
Thanks
Kintara
Actually, I have found the command I was looking for, but could not see the wood for the trees.
ListView:
r= lv.SelectedRow
x=lv.GetCell("Column2",r)
y=lv.GetCell("Column3",r)
Oh well, at least its out there for future reference
Kintara