I have a form with a combo field in with the MatchRequired option set to true.
Problem is, if you type in a non-match you get an error "invalid property value" which I can't seem to replace with a customer message.
I have tried:
But it doesn't seem to matter where I place this in the code, the Invalid Property message always appears.
What can I do about this?
Many thanks
Problem is, if you type in a non-match you get an error "invalid property value" which I can't seem to replace with a customer message.
I have tried:
Code:
On Error GoTo ErrFindClick
ErrFindClick:
MsgBox "Please select an item from the list.", vbOKOnly, "Please amend"
But it doesn't seem to matter where I place this in the code, the Invalid Property message always appears.
What can I do about this?
Many thanks