Prevent other from seeing VBA

E

Ed

Hello, is it possible to prevent others from seeing what is contained in VBA
modules and so on?

thanks
 
D

Don Guillett

option private module
at the top of the module will hide. Then protect the code to protect from
some users.
 
Top