Where is acDataErrContinue?

croby

Registered User.
Local time
Today, 03:02
Joined
Feb 27, 2003
Messages
29
Hi, When I sent a message, I used the following coding in a control's Getfocus event:

MsgBox "Double-click this field to add an entry to the list."
Response = acDataErrContinue

The Access reponded with "Veriable not found" . I check the Action Constant listing. I coundn't find it either. Who knows where it is? Thanks. Chris
 
Are you sure it wasn't Response that Access was complaning about, did you
Dim Response As Integer ?
 
Thanks for all replies. I coded several events. I gave the event was not correct (sorry!). The code was in the NotInlist event. I copied it from a sample:

Private Sub cboResolve_NotInList(NewData As String, Response As Integer)
MsgBox "Double-click this field to add an entry to the list." Response = acDataErrContinue
End Sub

I guess it means: If data error, continue to proceed. I want to verify if my guessing was right, I even couldn't find where it is.
Is it in some component I did not install (Access 97)? Please help again. Chris
 

Users who are viewing this thread

Back
Top Bottom