Syntax to address ThisWorkbook.BuiltinDocumentProperties via Access Automation?

E

EagleOne

2003

What syntax is proper to address the following VBA after Late Binding via Access?:

ThisWorkbook.BuiltinDocumentProperties("Creation Date") = myDate & " " & myTime

The code fails even though I used:

Dim ThisWorkbook as Object (in the Access VBA module to accomodate late binding of Excel libraries)

TIA EagleOne
 
D

Douglas J. Steele

According to the Help file for Excel 2003, the built-in document properties
are read-only.
 
E

EagleOne

Well Doug,

I guess that is why!! I thought that there was a VBA way to change the properties.
Live and learn. Thanks!

EagleOne
 

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