In my table, there is field set as Required, whose value is input from a text box in a form. When a user doesn’t key in a value or the value is changed from a filled value to Null and move away from the text box, I receive the expected alert message that
“The field ‘fldName’ cannot contain a Null value because the Required Property for this field is set to True. Enter a value in the field.”
How could I catch this alert message and replace it with a message (in a different language) of my own? There is no error number displayed on the screen. I tried to use LostFocus() without success when I moved away from the text box. Can anyone help?
Generally, is there any way that I can change the built-in warning message like “The text you entered isn’t an item in the list.” when one keys in an item not in the listbox? I want to replace them with messages of my own.