How can I modify the Author property?

F

Freddy

I have the following problem with my Access ADP-Client
(Backend=MS-SQLServer2000):

I want to modify the Access-property 'Author'.
I found the following solution for a MDB-Database:

Dim dbs As Database, cnt As Container
Dim doc As Document, prp As Property
Set dbs = CurrentDb
Set cnt = dbs.Containers!Databases
Set doc = cnt.Documents!SummaryInfo
doc.Properties.Refresh
doc.Properties("author") = "NewName"

This only works with DAO and does not work with ADO.
Does anybody know the solution for my ADP-Client?

Freddy
 

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