Combo Box customized msgs

mixedguy

Registered User.
Local time
Yesterday, 21:22
Joined
Jun 12, 2002
Messages
52
Hi,

How would I create a customize "Information Message dialog box" on a combo List where the property value is set to "Limit to List." Since the combo box is set to "Limit to List" property value, if the user enters something different from the list an error message will appear. It essentially says "The data you entered isn't on the list. Please pick an item that's on the list." What I want to happen when the users try to enter data into the combo field that's not on the list for a customized message to appear. How would I do that?

Thanks in advance!!!
 
In the NotInList event:

Code:
MsgBox "Please select from the selection provided."
Response = acDataErrContinue
 

Users who are viewing this thread

Back
Top Bottom