VBA Password

  • Thread starter Thread starter 123
  • Start date Start date
1

123

Thank you very much
I have access data base protect my code using Password (VBA
.....tools …>properties –Password)
My question is can I use this password with VBA Code Or Not simple example
open form design view and add textbox with some code to the form if I don't
have VBA password I can't do that If I have VBA Passord I can...
Thank you
If Yes Please tell us the code
Why:
Delete form.
Import form.
Design form
 
AFAIK, if you password your database, supplying the password permits you to
open it, but you then have full access to everything in it. Without the
password, you can't open it at all.

You can "code your own" password within an Access database using something
as simple as InputBox, but this is not very secure.
For full security, you can implement Access Security.
Make sure you read and understand the FAQ on it first.

HTH
- Turtle
 
Back
Top