View Full Version : CurrentDb().Properties()


philfer
12-22-2008, 08:22 AM
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

Banana
12-22-2008, 08:33 AM
Use the property object to get the information.

Private Sub Tryit()

Dim prp As DAO.Property

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

End Sub