Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Wanet Telecoms Ltd on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

combo box values

Status
Not open for further replies.

pleg12345

IS-IT--Management
Dec 21, 2003
48
EU
How do i keep the initial value in a combo box blank until one is selected from the list?

I tried using the default option for e.g. "", but it only keeps it blank until you move on to the next record?

Can you please help?
 
it should be blank until you select from the list, unless you've set a default. Unless of course the combo box is unbound.
try this in the on current event:-

Private Sub Form_Current()
Me!["your combo box"] = Null
End Sub

Be ALERT - Your country needs Lerts
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top