combo box problem (simple)

  • Thread starter Thread starter Jim
  • Start date Start date
J

Jim

I have a two column combo box in a table and
corresponding form. When the bound column is set to 1,
the value in column one appropriately appears in the form
and the underlying table. However when I change the bound
column to 2, the value from column 1 continues to appear
in the form and underlying table.

Whats up with that?
 
The column that is displayed in the non-expanded control is the first
non-zero width column. So all you need to do is change the ColumnWidths
property to make the width of the first column 0. Here's what you would have
in this property:

0,1

Change the 1 to whatever width you want for the second column.
 
Back
Top