Database properties

PearlGI

Registered User.
Local time
Today, 20:54
Joined
Aug 30, 2001
Messages
125
You can set various custom Database Properties (under the File menu), but is it possible to interrogate these using VBA?

For instance, if I were to set a custom property called "IssueNo", how could I find the value that had been set for this property via code?
 
PearlGI said:
You can set various custom Database Properties (under the File menu), but is it possible to interrogate these using VBA?

For instance, if I were to set a custom property called "IssueNo", how could I find the value that had been set for this property via code?

To reference a property that you've set from the "custom" tab of the database properties dialog box:


Currentdb.containers("databases").Documents("userdefined").properties("YourCustomPropertyHere")
 

Users who are viewing this thread

Back
Top Bottom