Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Can we make a program debug proof?

Former Member
0 Likes
454

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

3 REPLIES 3
Read only

Former Member
0 Likes
430

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.

Read only

Former Member
0 Likes
430

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

Read only

Former Member
0 Likes
430

got the answer