Saving New Data Not in Combo List

S

Samantha

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.
 
K

Klatuu

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
 
C

Chaim

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.
 
Top