tiredofit
Well-known Member
- Joined
- Apr 11, 2013
- Messages
- 1,924
- Office Version
- 365
- 2019
- Platform
- Windows
It is possible to prevent users from seeing the VBA by adding a password (admittedly though it can be easily cracked).
However, is it possible to prevent users from opening the VB Editor at all?
The reason is my program has events but supposing for argument sake, the user opens the VB Editor and types in the Immediate Window (which they have access to, even if the code is password protected):
then my program will not behave as expected.
However, is it possible to prevent users from opening the VB Editor at all?
The reason is my program has events but supposing for argument sake, the user opens the VB Editor and types in the Immediate Window (which they have access to, even if the code is password protected):
Code:
Application.EnableEvents = False
then my program will not behave as expected.