CurrentDb().Properties()

philfer

Registered User.
Local time
Today, 10:46
Joined
Dec 15, 2008
Messages
29
Is there anywhere I can get a full list of all the properties I can set with the above code. An example wiould be CurrentDB().Properties("StartUpForm")

Is there a list of all the properties I can set with this. (I tried Access help and the object browser but came up with nothing

Thanks
Phil
 
Use the property object to get the information.

Code:
Private Sub Tryit()

Dim prp As DAO.Property

For each prp in CurrentDb.Properties
   Debug.Print prp.Name & ": " & prp.Value
Next

End Sub
 

Users who are viewing this thread

Back
Top Bottom