list box error msg

  • Thread starter ai_enjoi via AccessMonster.com
  • 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?
 
F

fredg

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.
 
A

ai_enjoi via AccessMonster.com

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.
 
Top