Kjell said:
I have a combo box with 2 columns, both are visible when I click the
arrow but only the bound column is visible after the choise is made.
Is there a way to show both columns at all times?
No, but you can place a TextBox right next to it with a ControlSource of...
=ComboBoxName.Column(n)
....where 'n' is the zero-based value of the column you want. This will only
*display* the value of the second column. It will not store it as part of the
record in the underlying table of the form, but this is usually the desired
behavior anyway.
If there is a reason you need the value stored as part of the record then you
would use the AfterUpdtae event of the ComboBox with...
Me.TextBoxName = Me.ComboBoxName.Column(n)