Properties for the Current database can be set under File>Options.
How Do I Edit Access 2019 Database Properties
Is there a form for editing the properties that show up when you run:
Option Compare Database
Function ListProperties()
Dim sMessage As String
For i = 0 To CurrentDb.Properties.Count - 1
On Error GoTo lblError
Debug.Print i & ": " & CurrentDb.Properties(i).Name & " = " & CurrentDb.Properties(i).Value
GoTo lblContinue
lblError:
Debug.Print i & ": " & CurrentDb.Properties(i).Name & " = " & Err.Description
lblContinue:
On Error GoTo 0
Next i
End Function
Microsoft 365 and Office | Access | For business | Windows
Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.
21 answers
Sort by: Most helpful
-
-
George Hepworth 22,220 Reputation points Volunteer Moderator2023-06-11T13:06:35+00:00 You can do this through the interface, as Scott suggests.
You could, conceivably, write VBA to do that. You have done the first step already, i.e. identifying properties. But the ROI in a "roll-your-own" implementation might not be all that great. Are there specific properties you want to manage on the fly regularly?
-
Anonymous
2023-06-11T19:07:25+00:00 >Are there specific properties you want to manage on the fly regularly?
Not really.
-
Anonymous
2023-06-11T19:33:12+00:00 >Are there specific properties you want to manage on the fly regularly?
Not really.
Hi saberman,
The problem in Access to do these things "in the user way", is in my opinion, the static behaviour of the forms.
With dynamical forms it is a 3-minute task, but you need an infrastructure to do so.
This functionality is now standard available in all my applications.
More interesting would be to use this kind of overview for only a couple of properties, but then for all the applications, to compare them.
This can easily be done from my "DB_of_Databases" application, using the same infrastructure.
Imb.