Home
Forums
VBA Macros
Tutorials
Interview
Downloads
About Us
To delete import error tables from database
Sub deleteimporterrors()
Dim tbldef As TableDef
For Each tbldef In CurrentDb.TableDefs
If tbldef.name Like "*_importerror*" Then
DoCmd.DeleteObject acTable, tbldef.name
End If
Next tbldef
End Sub
No comments:
Post a Comment
No comments:
Post a Comment