Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

hide excel macros

Status
Not open for further replies.

lamlancer

Technical User
Jul 13, 2005
4
CA
i understand how to password protect a macro's code but is there a way to hide the names of the macros as well so that when the user selects 'alt f8' the names are not listed

thanks for any help or suggestions
 
At the top of the module containing your macros add the following line:
Code:
Option Private Module


Regards,
Mike
 
daaaaaaaa

that was simple

thanks very much

only problem is that now my ctrl keys assigned to the macros do not work

any suggestions

thanks once again

 
The only way I know around this is to convert your workbook into an Add-In. First, remove the Option Private Module statement. Then, click on ThisWorkbook in the Project Explorer window of the VBE and set its IsAddin property to True.


Regards,
Mike
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top