Re: Access 97. Can you delete (remove) a complete table with an instruction in VB code? TIA... -
10-28-2003
, 12:42 AM
DoCmd.DeleteObject acTable, "tblName"
will delete the table. if you want to save the structure but delete
the records use SQL:
DELETE * FROM tblName;
-john
Kirk McMillan <removethis.kirkm (AT) xtra (DOT) co.nz.removethistoo> wrote |