Jul 28, 2003 #1 MaxEd Technical User Jul 3, 2002 407 US Does anyone know how to detect if the database has been open as read only? Thank you. -Laughter works miracles.
Does anyone know how to detect if the database has been open as read only? Thank you. -Laughter works miracles.
Jul 28, 2003 #2 hermanlaksko Programmer Aug 26, 2001 937 DK Access will tell you as the app starts that you can not make any changes to this database as its read-only. However access should allow you to fiddle with the database's attributes. Herman Upvote 0 Downvote
Access will tell you as the app starts that you can not make any changes to this database as its read-only. However access should allow you to fiddle with the database's attributes. Herman
Jul 29, 2003 Thread starter #3 MaxEd Technical User Jul 3, 2002 407 US I need to find the boolean in ACCESS to tell me if my database is readonly to hide certain objects in the database. -Laughter works miracles. Upvote 0 Downvote
I need to find the boolean in ACCESS to tell me if my database is readonly to hide certain objects in the database. -Laughter works miracles.
Jul 29, 2003 #4 mavog IS-IT--Management Jun 12, 2003 25 GB The way that i've done this is by opening a form read-only DoCmd.OpenForm "formName", acNormal, "", "", acFormReadOnly, acNormal otherwise there are form properties like Allowedits, allow additions and allow deletions hope this helps Upvote 0 Downvote
The way that i've done this is by opening a form read-only DoCmd.OpenForm "formName", acNormal, "", "", acFormReadOnly, acNormal otherwise there are form properties like Allowedits, allow additions and allow deletions hope this helps