Personalize error frame

  • Thread starter Thread starter an
  • Start date Start date
A

an

I would like to personalize a error frame.

For example:

Title:
"Microsoft Access"

Message:
"The field ... cannot contain a Null value because the
Required property for this field..."

How is possible we personalize this frame, please?

Thanks in advance.
an
 
In form properties you have the on error. I have done the
following ...
If DataErr = 3022 Then
Response = 0: a = MsgBox("My error Message.", , "Message")
End If

Martin
 
Back
Top