list box error msg

  • Thread starter Thread starter ai_enjoi via AccessMonster.com
  • Start date Start date
A

ai_enjoi via AccessMonster.com

is there any way i can change/modify the error message "the text you entered
isn't an item in the list" since i enabled the property Limit to Yes?
 
is there any way i can change/modify the error message "the text you entered
isn't an item in the list" since i enabled the property Limit to Yes?

Just your own message?
Code the Combo Box NotInList event:

MsgBox "this is my new message."
Response = acDataErrContinue

Normally the user would be given the option to add the item to the
list, but you didn't ask for that.
 
thank you...that's what i needed


Just your own message?
Code the Combo Box NotInList event:

MsgBox "this is my new message."
Response = acDataErrContinue

Normally the user would be given the option to add the item to the
list, but you didn't ask for that.
 

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

Back
Top