Did you try clicking the checkbox?
So have a look at the properties of the db, and see if that property is mentioned?
However, it might turn out to be read only.
Please use # icon on toolbar when posting code snippets.
Cross Posting: https://www.excelguru.ca/content.php?184
Debugging Access: https://www.youtube.com/results?sear...bug+access+vba
This link suggests you can set lock parameter on Recordset. Lots of results re Recordset locking with vba. I did not find an parameter/property for Database, but only tried Google.
Here is a snippet of code to check your db properties. Access 2007 does not even have that option in the list.
Code:Sub dbProperties() Dim prp As DAO.Property Dim db As DAO.Database On Error Resume Next Set db = CurrentDb() For Each prp In db.Properties Debug.Print prp.Name & " - " & prp.Value Next Set db = Nothing End Sub
Please use # icon on toolbar when posting code snippets.
Cross Posting: https://www.excelguru.ca/content.php?184
Debugging Access: https://www.youtube.com/results?sear...bug+access+vba
a lot of properties are not created until actually used - tick the box and run the code again to see if it is returned. Untick it and it should still be thereAccess 2007 does not even have that option in the list.
Please use # icon on toolbar when posting code snippets.
Cross Posting: https://www.excelguru.ca/content.php?184
Debugging Access: https://www.youtube.com/results?sear...bug+access+vba
SurprisingNo, I mean, I do not have the Client Settings option in my list of options.
Please use # icon on toolbar when posting code snippets.
Cross Posting: https://www.excelguru.ca/content.php?184
Debugging Access: https://www.youtube.com/results?sear...bug+access+vba