Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Westi on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How to get creation date for access project

Status
Not open for further replies.

cmmrfrds

Programmer
Feb 13, 2000
4,690
US
Can anyone show me what the code looks like to access the creation date of my access application. The creation date can be seen by looking under File and then Database. Under the General tab is the creation date. I need to compare this creation date to the creation date in another access project.

I appreciate any assistence.

Jerry
 
If you query msysobjects table it will show the date created
SELECT Min(MSysObjects.DateCreate) AS MinOfDateCreate
FROM MSysObjects;
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top