Query the Display Value of a Combo Box Control Access 2000

  • Thread starter Thread starter Mike Thomas
  • Start date Start date
M

Mike Thomas

In Access 2000, I have a situation where I would like to query the display
value of a combo box.

This is a typical combo box where the bound column (col 1) is the primary
key of the table from which the display value is selected. The display
column (col 2) displays the values from which the user selects one.

So ? me.cbo.value returns the primary key of the selected row.

How can I return the display value?

Many thanks
Mike Thomas
 
Me.cbo.Column(1) (and Me.cbo.Column(0) is another way to return the value
from the first column)
 
Back
Top