PDA

View Full Version : Macro Protection...


Mike "the Rat"
09-16-2003, 06:51 AM
How can I protect my macros from being viewed or edited ?

H.annes
09-16-2003, 09:33 PM
Originally posted by Mike "the Rat"
How can I protect my macros from being viewed or edited ?
Good morning, Mike!

Use SECURE_MACRO. After having secured a macro you can save it to a file with STORE_MACRO (not SAVE_MACRO) and load the file with LOAD_MACRO (not INPUT).

A small problem is: you can secure either just one macro or all macros. The best way to secure & store a bunch of macros is:
DELETE_MACRO ALL
INPUT <unsecured-macro-file>
SECURE_MACRO ALL
STORE_MACRO ALL <secured-macro-file>
INPUT "startup.m"

Good luck!

Hannes