tnguyen315
MIS
My code:
Dim DQ As String
DQ = """"
strSQL = "INSERT INTO " _
& "Audit (EditDate, InsertedBy, RecordID, RecordDate, SourceTable, " _
& " SourceField, BeforeValue, AfterValue, ComputerName, UserDomain, UserProfile) " _
& "VALUES (Now()," _
& DQ & glbGetUserName() & DQ & ", " _
& DQ & RecordID.Value & DQ & ", " _
& DQ & RecordDate.Value & DQ & ", " _
& DQ & frm.RecordSource & DQ & ", " _
& DQ & .Name & DQ & ", " _
& DQ & varBefore & DQ & ", " _
& DQ & varAfter & DQ & ", " _
& DQ & Environ("ComputerName") & DQ & ", " _
& DQ & Environ("UserDomain") & DQ & ", " _
& DQ & Environ("UserProfile") & DQ & ")"
Debug.Print strSQL
DoCmd.SetWarnings False
DoCmd.RunSQL strSQL
DoCmd.SetWarnings True
Dim DQ As String
DQ = """"
strSQL = "INSERT INTO " _
& "Audit (EditDate, InsertedBy, RecordID, RecordDate, SourceTable, " _
& " SourceField, BeforeValue, AfterValue, ComputerName, UserDomain, UserProfile) " _
& "VALUES (Now()," _
& DQ & glbGetUserName() & DQ & ", " _
& DQ & RecordID.Value & DQ & ", " _
& DQ & RecordDate.Value & DQ & ", " _
& DQ & frm.RecordSource & DQ & ", " _
& DQ & .Name & DQ & ", " _
& DQ & varBefore & DQ & ", " _
& DQ & varAfter & DQ & ", " _
& DQ & Environ("ComputerName") & DQ & ", " _
& DQ & Environ("UserDomain") & DQ & ", " _
& DQ & Environ("UserProfile") & DQ & ")"
Debug.Print strSQL
DoCmd.SetWarnings False
DoCmd.RunSQL strSQL
DoCmd.SetWarnings True