I need to use a control break in a data report, but i have no clue whatsoever on how to do it. I f any one could give me an example that would be great.
Printable View
I need to use a control break in a data report, but i have no clue whatsoever on how to do it. I f any one could give me an example that would be great.
what do you mean by a control break? do you mean a breakpoint? (a breakpoint is where if your code reaches a line it stops executing and allows you to step through the code line by line to debug it.
If so then you want to left click on the white margin to the left of your code, the line will have a maroon background.
when the code reaches that line execution will stop and the code window will come up, pressing F8 advances to the next line of code. pressing F5 resumes execution as normal.