Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Listbox Selected problem 1

Status
Not open for further replies.

taterday

Programmer
Jan 28, 2009
183
US
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.
 
There are two relevant properties:

- The ListIndex property will give you the row number.

- The List property is an array that maps to specific rows and columns.

So, to find the 2nd column in the selected row, you could do this:

Code:
lcValue = this.List(this.ListIndex, 2)

Mike


__________________________________
Mike Lewis (Edinburgh, Scotland)

Visual FoxPro articles, tips, training, consultancy
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top