Setting password for VBAProject through Macro

kool_mas

Board Regular
Joined
Oct 7, 2004
Messages
63
How can I set the password of VBAProject in the VB editor and lock the project for viewing?

From the control excel file I am opening another excel file which has some sheets I dont want the end user to be able to see.

Code:
strXlsFile = strOutputDir & strOrgVar & ".xls"
    
Set wbOrg = Workbooks.Open(strTemplateXls_CT)

Application.DisplayAlerts = False 'Always overwrites if existing file exists

Application.Calculation = xlCalculationAutomatic 

' Here I want to have the code to set the password to the vba project . I already have the code to make only 1 output sheet visible and all others very hidden.

wbOrg.SaveAs (strXlsFile)
    
       
wbOrg.Close


Appreciate any help in this.
 

Excel Facts

Excel motto
Not everything I do at work revolves around Excel. Only the fun parts.

Forum statistics

Threads
1,214,875
Messages
6,122,044
Members
449,063
Latest member
ak94

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top