CarysW Complete Access Numpty Local time Today, 13:29 Joined Jun 1, 2009 Messages 213 Apr 9, 2010 #1 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.
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.
Trevor G Registered User. Local time Today, 13:29 Joined Oct 1, 2009 Messages 2,368 Apr 9, 2010 #2 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
CarysW Complete Access Numpty Local time Today, 13:29 Joined Jun 1, 2009 Messages 213 Apr 9, 2010 #3 Trevor G said: 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 Click to expand... Thanking you!
Trevor G said: 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 Click to expand... Thanking you!