macro protection

  • Thread starter Thread starter Lois
  • Start date Start date
May be you can ask for a password within the macro...

I assume you know how to protect VBE..

If this post helps click Yes
 
I can protect the viewing of the macro, however i am wondering if i can
prohibit the RUNNING of it??
 
1. You can get the user name using the below and then match it aganist a set
of users who need to use your macros. So within the macro you can 'End' the
procedure if the user is not valid.
strUserName = Environ("Username")

2. Within the macro itself (in the beiginning of the procedure) you can ask
the user to enter a password and validate whether the user is allowed to...


If this post helps click Yes
 
Back
Top