‎2008 Dec 02 1:56 AM
Hi Experts,
Can we make a single program debug proof so that noone can chagne the values of the
variables in debugging only for this program.
Thanks
Yogesh Gupta
‎2008 Dec 02 4:17 AM
Hi Yogesh,
its a good question. but i don't think we can make program debug proof. as debugger is meant to change the program variable and see the output during runtime.
‎2008 Dec 02 5:42 AM
Hi
We generally use a role which is applied to the user to disable debugging. But as you said you want to disable debugging for specific program you can create a macro without any parameters and write your code section into it which you dont want to be debugged.
Ex:
DEFINE test. "macro defined
write: 'code inside macro'.
END-OF-DEFINITION.
test. "macro called, code inside it cannot be debugged
Thanks
Vishal Kapoor
‎2008 Dec 17 11:29 PM