Preventing changes

purceld2

Registered User.
Local time
Today, 22:12
Joined
Dec 4, 2008
Messages
79
I have developed an applaication which has been sent out to users, how can I prevent the users from change anything basically locking forms code etc

Thanks in advance

Regard
 
  1. One useful tactic is to hide the Database Window at Startup ... look in your Options.
    • This will keep most users from seeing the database objects but it is not failsafe, not least because if your users have a full licence of MS Access on their PC they could easily get into Design mode on a query, form, or report with a right-click.
  2. The safest method is perhaps to issue the database under a 'Runtime' licence. This protects the entire database from changes. There are oodles of threads on how to build and issue a 'Runtime' database within this Forum.
 
  1. One useful tactic is to hide the Database Window at Startup ... look in your Options.
    • This will keep most users from seeing the database objects but it is not failsafe, not least because if your users have a full licence of MS Access on their PC they could easily get into Design mode on a query, form, or report with a right-click.
  2. The safest method is perhaps to issue the database under a 'Runtime' licence. This protects the entire database from changes. There are oodles of threads on how to build and issue a 'Runtime' database within this Forum.

It works. BUT: how do you show the Database Window again?:)
 
Hi dear,

Just openup your database while holding SHIFT key. This will bypass your startup.

Just try it..........
 
The easiest way to protect your code is to design a module and go to Tools > DB Properties and click on the Protection tab and set a password to prevent users accessing your code. It also prevents items form being exported/imported from/to other mdb's

David
 
I would compile the dbs to an MDE file

Then there IS no code for users to see or change
 
With any of these strategies, it's really important to make a backup of the database before proceeding. Or test the changes on a copy, otherwise you may find yourself locked out, and unable to develop the thing any further.
 
Hi Dezirous, DCrake, Dave and Atomic Schrimp!

Thank you all for the answers and advice. I have already tried the Shift+open. It works! (of course) I will try the other solutions as well to see the options. Again: Thanks.

Ps.: Does anyone know how to hide (and show) the menu bar: File - Edit - View - Insert etc.?

Best Regards

Lars (LAN)
 

Users who are viewing this thread

Back
Top Bottom