NotInList error message

C

Crystal

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

Crystal
 
M

Marshall Barton

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).
 
P

PC Datasheet

Put the following line of code in the NotInList event:

Response = acDataErrContinue
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top