Accessing Columns in Combo control

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I would like to access all columns in a Combo control.

For example:
A Location Combo control contains 3 columns, they are:
"ID" (bounded), "Address", "State".

I can access column "ID" with cboLocation.Value
How can I access column "Address" and "State"?
 
Check out the .Column property of the control, you'll find what you need
there.

Jon Furman
 
Back
Top