At the beginning of a function in a subform, I run this code to truncate a couple SQL tables:
MySQL = "TRUNCATE TABLE tblNewHPNonSerialized; " & _
"TRUNCATE TABLE tblNewHPSerialized; "
ExecuteSQLQueryNoRecords MySQL, 1
The Definition of "ExecuteSQLQueryNoRecords" is:
Dim...