linking combo boxes

S

Steve

I have a combo box on an unbound form. Is there a way to pass it the value I
want displayed rather than opening the combo and and making a selection?
 
W

Wayne Morgan

The Value of a combo box is the value of the Bound Column in the selected
row. If you set the value to the desired value, you must use the value from
the Bound Column for the desired row. If you have more than one row with the
same value in the Bound Column, the first row that has that value will be
selected.

Example:
Forms!Form1!Combo0 = 5
 
Top