Last modified Date for an Access file

J

Jess

What is the vba command that yields the date when THE CODE for an access file
was modifed for the last time?

Can anybody post an example?
 
D

Daniel Pineault

Perhaps someone will say otherwise, but to my knowledge this cannot be done.
You can determine the last modified time of the mdb file itself, but when
someone edited the vba code... I do not believe this is possible.

Why? What is the end goal? Perhaps we can guide you in another way.
--
Hope this helps,

Daniel Pineault
http://www.cardaconsultants.com/
For Access Tips and Examples: http://www.devhut.net
Please rate this post using the vote buttons if it was helpful.
 
D

Daryl S

Jess -

Modules and forms have modified dates, but not individual pieces of code
that I know of.
 
J

Jess

Thanks

How can I know the modified date for a form, a report, and a module?

Can you post an example?

Thans
 
D

Daryl S

Jess -

Be very careful with the system objects. Remember to back up your database
before playing with this...

SELECT MSysObjects.DateUpdate
FROM MSysObjects
WHERE (((MSysObjects.Name)="objectname"));

Put in any object name (table name, report name, etc.)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top