Saving New Data Not in Combo List

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

Guest

Is there a way to save data that the user entered in a combo box, when the
data is not in combo list? That way new information is automatically updated.
thanks in advance.
 
It depends on what the row source of the combo box is. The basics are, you
have to set the Limit To List property to No, then you will have to use the
 
You need to set the LimitToList property to Yes, then write a NotInList event
procedure for the combo box. There's loads of information out there about
writing the event procedure. See Graham Seach's page at
http://www.pacificdb.com.au/MVP/Code/NIL.htm
for all you ever wanted to know about combo boxes and the NotInList event.
 
Back
Top