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
 
Back
Top