Double Error MsgBox

Raven

Soozie's watchin' you!
Local time
Today, 16:29
Joined
May 1, 2002
Messages
48
I have a combo box which has limit to list selected and in the Not on List event I have:


Private Sub Combo102_NotInList(NewData As String, Response As Integer)

MsgBox "Delete keyword entered, select from list or use Add Keyword", vbExclamation, "IMPORTANT NOTICE"

End Sub


This works fine, but I still get the 'standard' Access error message box coming up after my own personalised message box... how do I stop this standard message from appearing.

Thanks in advance.
 
Response = acDataErrContinue
 
SQL_Hell said:
docmd.setwarnings = false

This answer gave me a run time error on the setwarnings :(
 

Users who are viewing this thread

Back
Top Bottom