Hiding Macros

M

mrbalaje

I am using Macros in my excel sheets. I have protected my macro coding by
locking it, so that no one can able to see my macro coding.

But I want to protect in such a way that no one can able to see even the
names of the macros that I have created.
 
J

Jim Rech

Add:

Option Private Module

at the top of each module.

--
Jim
|I am using Macros in my excel sheets. I have protected my macro coding by
| locking it, so that no one can able to see my macro coding.
|
| But I want to protect in such a way that no one can able to see even the
| names of the macros that I have created.
 
M

mrbalaje

Jim,

I had Added Option Private Module on the top of the module. The macro names
are not displayed.

But I want to run the macros with the shortcut keys that I have already
assigned for it. I tried, but it doesn't work.

It is only for the security reason that I want to hide the names and the
number of macros that I have created. But i want to use the macro as usual.
 
Top