I need to know what listbox row that the user has selected. There are 9 fields on the row. I need to be able to located two fields to retrieve data from another table.
Rowsource is default
I do select to select f1, f2,f3,... f9 from ctable into cursor olist1 where f1= 'AC' order by f3
lnI = 1 && another tek-tips (excellent help)
SCAN
THIS.list1.AddItem(olist1.f1) && 1st col.
THIS.list1.AddListItem(f2,lnI,2) && 2nd col
THIS.list1.AddListItem(f3,lnI,3) && 3rd col
.....rest of them
lnI = lnI + 1
ENDSCAN
This works. I don't know how to get the value of f1 and f2 when I click or right click on the row.
Thank you.
Rowsource is default
I do select to select f1, f2,f3,... f9 from ctable into cursor olist1 where f1= 'AC' order by f3
lnI = 1 && another tek-tips (excellent help)
SCAN
THIS.list1.AddItem(olist1.f1) && 1st col.
THIS.list1.AddListItem(f2,lnI,2) && 2nd col
THIS.list1.AddListItem(f3,lnI,3) && 3rd col
.....rest of them
lnI = lnI + 1
ENDSCAN
This works. I don't know how to get the value of f1 and f2 when I click or right click on the row.
Thank you.