NotInList error message

  • Thread starter Thread starter Crystal
  • Start date Start date
C

Crystal

I need to supress the automatic error message received
when the NotInList event triggers. Is this possible? If
so, how?

Crystal
 
Crystal said:
I need to supress the automatic error message received
when the NotInList event triggers. Is this possible? If
so, how?


Depends on what you're doing. If you want the users to be
able to enter items that are not in the list, then set the
combo box's LinitToList property to No.

If you want them to be able to add items to the list, then
you need to write the code to do using the combo box's
NotInList event (see Help for examples).
 
Put the following line of code in the NotInList event:

Response = acDataErrContinue
 
Back
Top