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 IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Getting values from a list box

Status
Not open for further replies.

StrokerAl

Programmer
Feb 21, 2002
4
US
I have a multi column list box, can I get all of the column values from a selected row?
 
Use the column Property. The syntax in the Control Source for a textbox is like this.
=ListboxName.Column(1)

Combo/List boxes are zero based so the second column would be 1, the third 2 etc.

Paul
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top