Simple ComboBox Question

sir_aingeal

Registered User.
Local time
Today, 08:04
Joined
Nov 5, 2002
Messages
21
I have a combobox that I need not to show the first line as blank but as the first record in the table the box is based upon.

I know this is simple but have brain freeze at the moment.

Thanks
Iain
 
Use codelike this in the open or load event of the form:
Me.cboField = Me.cboField.ItemData(0)
 

Users who are viewing this thread

Back
Top Bottom