How to access Document Properties with VBA?

  • Thread starter Thread starter Dennis
  • Start date Start date
D

Dennis

Access 2003

In Excel VBA there is a function or property:

ThisWorkbook.BuiltinDocumentProperties("Author")
and
ThisWorkbook.BuiltinDocumentProperties("Creation Date")

In Access, what are the comparable VBA Statements?

I have been attempting to use:

CurrentProject.BuiltinDocumentProperties("Author")

But to no avail.

TIA Dennis
 
Dennis said:
Access 2003

In Excel VBA there is a function or property:

ThisWorkbook.BuiltinDocumentProperties("Author")
and
ThisWorkbook.BuiltinDocumentProperties("Creation Date")

In Access, what are the comparable VBA Statements?

I have been attempting to use:

CurrentProject.BuiltinDocumentProperties("Author")

But to no avail.

TIA Dennis

?CurrentDb.Containers("Databases").Documents("SummaryInfo").Properties("
Author")
Dirk Goldgar
 

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

Back
Top