J
Jonas
Is it possible to put event procedures in modules? If so, how is it
done? Here is the code that I have:
Private Sub Command7_Click()
Dim str4 As String
str4 = "INSERT INTO History "
str4 = str4 + "SELECT MailMergeTable.* "
str4 = str4 + "FROM MailMergeTable"
MsgBox str4
DoCmd.RunSQL str4
End Sub
done? Here is the code that I have:
Private Sub Command7_Click()
Dim str4 As String
str4 = "INSERT INTO History "
str4 = str4 + "SELECT MailMergeTable.* "
str4 = str4 + "FROM MailMergeTable"
MsgBox str4
DoCmd.RunSQL str4
End Sub