mmartinez74
Technical User
I have the following code in an Access 2000 database, it is designed to archive a table with the date.
Dim strSQL As String
strSQL = "SELECT tbl_BillingMaster.* INTO [archive" & Date & "] FROM tbl_BillingMaster;"
DoCmd.RunSQL strSQL
When this runs, the user is prompted with a box which confirms the operation. Eventually I will be running this on multiple tables and do not want the user to be prompted for the action on each one. Is there a way that I can turn these prompts off?
Dim strSQL As String
strSQL = "SELECT tbl_BillingMaster.* INTO [archive" & Date & "] FROM tbl_BillingMaster;"
DoCmd.RunSQL strSQL
When this runs, the user is prompted with a box which confirms the operation. Eventually I will be running this on multiple tables and do not want the user to be prompted for the action on each one. Is there a way that I can turn these prompts off?