Open with VBA - hide passwords in code?

  • Thread starter Thread starter Buffyslay
  • Start date Start date
B

Buffyslay

hi

i have a piece of code where i need to open various workbooks - these
all have passwords (i know what they are).

what i dont want to do is code in the passwords into my vba as anyone
could look at them and see exactly what they are.

is there a way i can encrypt the passwords in the code?

i dont really want to password protect them as i have a tendancy to
forget them
 
There is no built in support for it. You could write your own routine to do
it (decrypt the password), but someone could read your code and try to
understand the algorithm. Not sure they would actually bother, however.

workbooks.Open Filename:="ABC.xls", Password:=MyDecryptFunction("RSM13V")
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top