Report variable back into BCB6
BJL
Brussels, Belgium
Working with BCB6 and FR3
I need to recover into BCB6 the value of Engine.TotalPages fron a 2-pass report.
The way I did it with FR2 does not work anymore.
Please help.
BJL
I need to recover into BCB6 the value of Engine.TotalPages fron a 2-pass report.
The way I did it with FR2 does not work anymore.
Please help.
BJL
Comments
TfrxCustomEngine* eng = frxReportGL->Engine;
int nbpg = eng->TotalPages;
BJL