How can I modify the Author property?

  • Thread starter Thread starter Freddy
  • Start date Start date
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
 
Back
Top