AllowbypassKey (Shiftkey) solution for adp file type

G

germainHuberdeau

The createProperty method works fine for mdb file type. I'm looking for a
solution using the add method for adp file types (AccessObjectProperties).
 
G

germainHuberdeau

Found it. The simple code below actually works.

CurrentProject.Properties.Add "AllowBypassKey", False
 
G

germainHuberdeau

Found it. Code below works from any vb location doesn't have to be module or
have variable set.

CurrentProject.Properties.Add "AllowBypassKey", False
 
Top