04-10-2025, 09:56 PM
@Fellippe
here the track points
you can refine it
here the track points
you can refine it
Quote:0-10 $Debug by menu or typed as first line of codeI like this explaining moment that increases the knowledge of IDE.
activating Debug with F4 key (list of Watch) with F7 and with F8
Executing program line by line using F7 key
observe index of line in execution (triangle and highlighted line of code)
F8 step over for running one loop step (running once all the instructions in a loop)
F6 step out (sub/Function) for running until flow runs out of sub/function
F5 flow the code to debug loops and I/O with user
14.40 breakpoints to stop flow of code and observe status of application (output and variables)
23.30 use debug to find bottlenecks in the code
26.40 Adding watches for inspecting variables
watching UDT made by TYPE...END TYPE, chosing elements to be observed
whatching Arrays, chose elements of array to be observed
41.03 changing value of variables to test specific conditions
43.40 set next line to be executed
45.15 see the variables of a specific subprocedure
49.10 F7 runs a Whole line of code also if it has many commands separated by colon
49.30 Observe a variable setting a condition of its value or range of value
58.50 remove a condition of watching about a variable