I have a database and want to be able to delete all the entries in the tables with no prompt.
table1
table2
table3
tried various ways with no luck.
What has worked was this
DoCmd.DeleteObject acTable, "table1" but this deletes the actual table and I do not want to do that, just the data in it.
thanks in advance,
table1
table2
table3
tried various ways with no luck.
What has worked was this
DoCmd.DeleteObject acTable, "table1" but this deletes the actual table and I do not want to do that, just the data in it.
thanks in advance,