Setting the Deault value of a combo box

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi, I'd like to set the default value of a combo box to the first value in a
result set returned by a select query.

[myQuery]![Field]! ???? =)

Could someone help me out here?

cheers
 
Try setting the combo's DefaultValue to:
=[MyCombo].[ItemData](0)

If the combo has Column Headings, use 1 instead of zero.
 
Back
Top