I have a workbook in which all of the macros are password protected by the following line of code:
If Sheet1.TextBox1.Text <> "passsword" Then Exit Sub
I would like to be able to run a macro that is still password protected using the above code with a hot key/short cut key even if the password is not correct. I want to prevent all but the people that know the proper hot key sequence from running the macro. I would like this hot key to bypass the above line that requires the proper password in textbox1. Thanks!
If Sheet1.TextBox1.Text <> "passsword" Then Exit Sub
I would like to be able to run a macro that is still password protected using the above code with a hot key/short cut key even if the password is not correct. I want to prevent all but the people that know the proper hot key sequence from running the macro. I would like this hot key to bypass the above line that requires the proper password in textbox1. Thanks!