I have got this button event that is kicking off some action.
Is there a way that I can add to this?
After what you see listed. I would like to execute a couple queries that I have save and I don't know the best way to do this?
The query names are
Query1 » CreateScrapRecordTag
Query2 » NewRecords
Query3 » DeletedRecords
Is there a way to add these to the end?
Is there a way that I can add to this?
Private Sub Update_Click()
'Delete old records from SkpiUpdate
DoCmd.SetWarnings False
DoCmd.RunSQL "Delete [SkpiUpdate].* from [SkpiUpdate]"
DoCmd.SetWarnings True
'Import new records from Excel file into Table1
DoCmd.TransferSpreadsheet acImport, 8, "SkpiUpdate", "K:\_DENSO QRE\SKPI PARTS RETURN\Copy of DownloadNCPartListServlet.xls", True, ""
End Sub
After what you see listed. I would like to execute a couple queries that I have save and I don't know the best way to do this?
The query names are
Query1 » CreateScrapRecordTag
Query2 » NewRecords
Query3 » DeletedRecords
Is there a way to add these to the end?