Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
How do I password protect a userform.So that only key people can open a
userform. Also is it possible to change the password in the future? -- AOU |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
You can change the procedure that shows the userform.
Dim myPWD as string dim UserPWD as string mypwd = "hi" userpwd = inputbox(Prompt:="Password") if userpwd < mypwd then msgbox "Not authorized" exit sub '??? end if 'keep going You could change the password in the code and redistribute the workbook. You could store the password in a text file that everyone has access to--but encrypt that password and then read the string from that text file and translate it to what you need. AOU wrote: How do I password protect a userform.So that only key people can open a userform. Also is it possible to change the password in the future? -- AOU -- Dave Peterson |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Thanks Dave. It works well.
I was thinking of storing the password in a worksheet(which is hiden) and protecting the project. How would I refir the password to a cell in a worksheet, say sheet3. -- AOU "Dave Peterson" wrote: You can change the procedure that shows the userform. Dim myPWD as string dim UserPWD as string mypwd = "hi" userpwd = inputbox(Prompt:="Password") if userpwd < mypwd then msgbox "Not authorized" exit sub '??? end if 'keep going You could change the password in the code and redistribute the workbook. You could store the password in a text file that everyone has access to--but encrypt that password and then read the string from that text file and translate it to what you need. AOU wrote: How do I password protect a userform.So that only key people can open a userform. Also is it possible to change the password in the future? -- AOU -- Dave Peterson |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
if userpwd < thisworkbook.worksheets("Sheet13").range("a1").val ue then
If Sheet13 is the name you see on the worksheet tab when that worksheet is visible. AOU wrote: Thanks Dave. It works well. I was thinking of storing the password in a worksheet(which is hiden) and protecting the project. How would I refir the password to a cell in a worksheet, say sheet3. -- AOU "Dave Peterson" wrote: You can change the procedure that shows the userform. Dim myPWD as string dim UserPWD as string mypwd = "hi" userpwd = inputbox(Prompt:="Password") if userpwd < mypwd then msgbox "Not authorized" exit sub '??? end if 'keep going You could change the password in the code and redistribute the workbook. You could store the password in a text file that everyone has access to--but encrypt that password and then read the string from that text file and translate it to what you need. AOU wrote: How do I password protect a userform.So that only key people can open a userform. Also is it possible to change the password in the future? -- AOU -- Dave Peterson -- Dave Peterson |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Dave,
Great stuff. It works a treat. Thank very much -- AOU "Dave Peterson" wrote: if userpwd < thisworkbook.worksheets("Sheet13").range("a1").val ue then If Sheet13 is the name you see on the worksheet tab when that worksheet is visible. AOU wrote: Thanks Dave. It works well. I was thinking of storing the password in a worksheet(which is hiden) and protecting the project. How would I refir the password to a cell in a worksheet, say sheet3. -- AOU "Dave Peterson" wrote: You can change the procedure that shows the userform. Dim myPWD as string dim UserPWD as string mypwd = "hi" userpwd = inputbox(Prompt:="Password") if userpwd < mypwd then msgbox "Not authorized" exit sub '??? end if 'keep going You could change the password in the code and redistribute the workbook. You could store the password in a text file that everyone has access to--but encrypt that password and then read the string from that text file and translate it to what you need. AOU wrote: How do I password protect a userform.So that only key people can open a userform. Also is it possible to change the password in the future? -- AOU -- Dave Peterson -- Dave Peterson |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
UserForm Password | Excel Discussion (Misc queries) | |||
Password Userform help !!!! | Excel Discussion (Misc queries) | |||
Password protected? help!! | Excel Worksheet Functions | |||
how to automate opening a password protected excel file? e.g. a .xls that has a password set in the security tab. | Excel Worksheet Functions | |||
bypass password when update linking of password protected file | Excel Discussion (Misc queries) |