Combo Box default message

  • Thread starter Thread starter Ken
  • Start date Start date
K

Ken

I got a "combo box" with the "Limit To List" set
to "Yes". When I type in a value which is not in the
list, it will give me a default message, saying "The text
you entered isn't an item in the list. Select an item
from the list, or enter text that matches of of the
listed items." How could I turn off this default message
box?
 
Put your own code in the NotInList event. Something like this:

Response = acDataErrContinue
MsgBox "You must select an item from the list!"
 
Back
Top