B
Bill
Most of my MDB upsized ok but I cannot figure out how to read some custom
database properties that I use.
Example
'read version from Database, Properties, Custom
Set dblocal = CurrentDb()
myDBVersion = GetDatabaseProp(dblocal, "Version")
using:
Function GetDatabaseProp(dbDatabase, strPropertyName As String) As Variant
GetDatabaseProp =
dbDatabase.Containers!Databases.Documents("UserDefined").Properties(strPropertyName).Value
End Function
This is proabably because there is no DAO jet DB any more!
So how do I do I point to the equivalent Custom Properties in the ADP?
Thanks
Bill
database properties that I use.
Example
'read version from Database, Properties, Custom
Set dblocal = CurrentDb()
myDBVersion = GetDatabaseProp(dblocal, "Version")
using:
Function GetDatabaseProp(dbDatabase, strPropertyName As String) As Variant
GetDatabaseProp =
dbDatabase.Containers!Databases.Documents("UserDefined").Properties(strPropertyName).Value
End Function
This is proabably because there is no DAO jet DB any more!
So how do I do I point to the equivalent Custom Properties in the ADP?
Thanks
Bill