combo box

K

kimberly

Using Access 2000-created Main form with a combo box that
looks up persons with 3 columns. How do I get all 3
columns to be visible AFTER a person is selected?
 
F

fredg

kimberly said:
Using Access 2000-created Main form with a combo box that
looks up persons with 3 columns. How do I get all 3
columns to be visible AFTER a person is selected?
Use unbound text controls for the 2 that don't show.
Code the Combo AfterUpdate event:

[ControlA] = ComboName.Column(2)
[ControlB] = ComboName.Column(3)

The above assumes Column(0) is the hidden bound column.
Column(1) is the column that does show after selection.
 

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

Top