Forcing combo box to show 'blank'.

CarysW

Complete Access Numpty
Local time
Today, 08:17
Joined
Jun 1, 2009
Messages
213
dunce.gif


I have 'contacts' form with a combo box to quickly navigate to an entry - I want the combo box to go back to 'blank' once it has taken me to the desired entry.

How do I do this.
 
Use the after update event to set the value to null so it would be something like this:

Private sub cboName_AfterUPdate()
me.cboname.value=Null
end sub
 
Use the after update event to set the value to null so it would be something like this:

Private sub cboName_AfterUPdate()
me.cboname.value=Null
end sub

Thanking you! :D
 

Users who are viewing this thread

Back
Top Bottom