Combo with 2 columns

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

Guest

I have a Combo Box with 2 columns; the 1st with the LastName, the 2nd with
the FirstName. When I click on the selected LastName to store it for printing
I would also like to be able to select and store, with that one click, the
FirstName.
In the "Click" line "in the "Property" for that Combo" I have entered the
name of a Macro which I though could use the "SetValue" to store the data,
but how can I define (express) the 2nd column of the Combo.
In any case is that the correct way to go about.
 
You could have a hidden or visible text box on the form called txtFirstName
and set its control source property to =YourCombox.Column(1)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top