ListBox

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

Guest

I have a ListBox with 3 fields. The 1st field is the bound field. Is there
a way on the Click event of the ListBox to capture the 3rd field's value in a
variable?

Thank you,

Steven
 
Steven said:
I have a ListBox with 3 fields. The 1st field is the bound field.
Is there a way on the Click event of the ListBox to capture the 3rd
field's value in a variable?

Thank you,

Steven

VariableName = Me!ComboBoxName.Column(2)

(columns start witrh zero)
 
Back
Top