T
Tran Hong Quang
I have code is as follows:
Dim dbs As Database
Dim doc As Document
Dim strKey as string
..................
Set dbs = CurrentDb
Set doc = dbs.Containers("Databases")!UserDefined
debug.print doc.Properties![strKey]
Set doc = Nothing
Set dbs = Nothing
....................
strKey is storing a real property name. For example, it is
holding "ReplicateProject". How to print out
doc.Properties![ReplicateProject]?
Thanks
Tran Hong Quang
Dim dbs As Database
Dim doc As Document
Dim strKey as string
..................
Set dbs = CurrentDb
Set doc = dbs.Containers("Databases")!UserDefined
debug.print doc.Properties![strKey]
Set doc = Nothing
Set dbs = Nothing
....................
strKey is storing a real property name. For example, it is
holding "ReplicateProject". How to print out
doc.Properties![ReplicateProject]?
Thanks
Tran Hong Quang