You can set up a delete query for each table that you want
to remove all rows from, and then, when opening the
database you can execute the query(ies) either through a
macro or (preferred method) using a module.
DoCmd.OpenQuery "name of delete query"
The above command (in Access 2000) in a module will delete
all rows from the table set up on the query while leaving
the table definition (keys, etc.) intact.
Hope this helps!
-----Original Message-----
I was wondering if it was possible to clear all database
entries each time the database was entered, ie so you
start with an empty table every time you open it?