Change a varible value during debug operatio

Topic Specific Tutorials and Tips.

Moderator: Rathinagiri

Post Reply
bluebird
Posts: 172
Joined: Wed Sep 28, 2016 3:55 am
DBs Used: DBF

Change a varible value during debug operatio

Post by bluebird »

Dear Mentors

I would like to know if I can change the value of a variable after a breakpoint stop.
Seems that I read that you can modify a variable in the Debug doc but how?

BB
User avatar
mol
Posts: 3720
Joined: Thu Sep 11, 2008 5:31 am
Location: Myszków, Poland
Contact:

Re: Change a varible value during debug operatio

Post by mol »

you can evaluate it, eq
x:=100;
or you can call function
x:=SomeFunction(...)
Post Reply