get custom properties

  • Thread starter Thread starter Craig Buchanan
  • Start date Start date
C

Craig Buchanan

I would like to get the File | Database Properites | Author property for my
access application in code. Moreover, i would like to get the value for a
custom property named Version as well.

The Application.CurrentProject.Properties collection is empty. I suspect
the AccessObjectProperties collection is what I need, but i can't seem to
find how to get it for the application.

Can anyone offer assistance?

Thanks,

Craig Buchanan
 
answered my own question.

CurrentDb.Containers("Databases").Documents("SummaryInfo").Properties("Autho
r")
CurrentDb.Containers("Databases").Documents("UserDefined").Properties("Versi
on")
 
Back
Top