I get this error "Too few parameters. Expected 1" when trying to run
the following code. Can someone please help me. Thanks in advance
Dim db As DAO.Database ' Current database
Dim sSQL As String
'Remove any cancelled update still in the tmp table.
Set db = DBEngine(0)(0)
sSQL = "DELETE FROM " & sAudTmpTable & ";"
db.Execute sSQL
' If this was not a new record, save the old values.
If Not bWasNewRecord Then
sSQL = "INSERT INTO " & sAudTmpTable & " ( audType, audDate,
audUser ) " & _
"SELECT 'EditFrom' AS Expr1, Now() AS Expr2,
NetworkUserName () AS Expr3, " & sTable & ".* " & _
"FROM " & sTable & " WHERE (" & sTable & "." & sKeyField &
" = '" & lngKeyValue & "');"
db.Execute sSQL, dbFailOnError
End If
AuditEditBegin = True
Exit_AuditEditB egin:
Set db = Nothing
Exit Function
'Err_AuditEditB egin:
'Call LogError(Err.Nu mber, Err.Description , conMod &
".AuditEditBegi n()", False)
'Resume Exit_AuditEditB egin
the following code. Can someone please help me. Thanks in advance
Dim db As DAO.Database ' Current database
Dim sSQL As String
'Remove any cancelled update still in the tmp table.
Set db = DBEngine(0)(0)
sSQL = "DELETE FROM " & sAudTmpTable & ";"
db.Execute sSQL
' If this was not a new record, save the old values.
If Not bWasNewRecord Then
sSQL = "INSERT INTO " & sAudTmpTable & " ( audType, audDate,
audUser ) " & _
"SELECT 'EditFrom' AS Expr1, Now() AS Expr2,
NetworkUserName () AS Expr3, " & sTable & ".* " & _
"FROM " & sTable & " WHERE (" & sTable & "." & sKeyField &
" = '" & lngKeyValue & "');"
db.Execute sSQL, dbFailOnError
End If
AuditEditBegin = True
Exit_AuditEditB egin:
Set db = Nothing
Exit Function
'Err_AuditEditB egin:
'Call LogError(Err.Nu mber, Err.Description , conMod &
".AuditEditBegi n()", False)
'Resume Exit_AuditEditB egin
Comment