Hi, Daniel.
The Access file _is_ the database, which contains the tables, relationships,
queries, forms, reports, et cetera, for the database application. If you
are referring to the modification of the table structure and not
modification of the records in the table, then Katrina has already
identified an excellent method for doing so, since it can be used
programmatically in a VBA procedure or in a query, as well as viewed within
the table's datasheet.
However, if one is willing to write the SQL statement directly into the SQL
pane window, then the System Objects don't even need to be visible. One
could write the following statement:
SELECT Name, Type
FROM MSysObjects
ORDER BY Type, Name;
And the query would display the name and numerical type of each object in
the database.
Another way of displaying the modification dates of the tables (and the
other objects, as well) is to select a blank spot within the Database
Window, then right click on that spot to display the pop-up menu. Select
View -> Details to display the object names, their descriptions, their last
modification dates, their creation dates, and their object types.
HTH.
Gunny
See
http://www.QBuilt.com for all your database needs.
See
http://www.Access.QBuilt.com for Microsoft Access tips.
(Please remove ZERO_SPAM from my reply E-mail address, so that a message
will be forwarded to me.)