
Originally Posted by
Bob Fitz
I'm not totally clear about what exactly you want. So, if you want to select and show a name in combo box that is named "Cust ID", change the column widths property. Setting a column to 0cm will make it invisible. However, if you want to select a number in the combo box and then have the Company name that is identified by that number shown in a text box, you will need to set the Control Source property of the text box to something like:
=ComboBoxName.Column(1)
The number in brackets identifies which column of the combo box is to be shown. Remember though, that the first column is 0, the second is 1 etc.