Personalize error frame

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
 
M

martin

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
 
Top