DBEngine Object Example (MDB)
The following example prints all the properties of the DBEngine object:
Sub EngineProperties() Dim prp As Property For Each prp In DBEngine.Properties Debug.Print prp.Name Next prp End Sub