| | |
|
|
|
Combo box selection updating text box? |
| message from =?Utf-8?B?Q2gzM2No?= on 24 May 2004 |
Hello there-
I have a number of text boxes that I need to update from a choice the user has made on a check box. I have been able to bring out different columns using the bound column deal, but I can't seem to replicate it to update other text boxes.
My cbo is bound to a Last Name field and I'm looking to update other txt boxes (First Name, DOB, etc...) with each selection of the Last Name .
|
| Wayne Morgan replied to =?Utf-8?B?Q2gzM2No?= on 24 May 2004 |
These textboxes won't be editable, but to show the other information include
these other columns in the combobox's Row Source. Then in the textboxes, set
their Control Source to an expression that specifies which column of the
combo box you want displayed.
Example:
=cboMyCombobox.Column(1)
The column number is zero based, so the first column is 0, the second is 1,
etc.
|
|
Archived message: Combo box selection updating text box? (Microsoft Access Forms)