Canceling preview of report
I'm showing a report to the user, using a custom frame with a TppViewer on
it.
When the user presses the CAncel button, ppViewer.CAncel is called and processing
seems to stop.
When the user then presses the Next page button, ppViewer.NextPage is executed
and generation of the whole report is started, in stead of just the Next
Page. How do i instruct the viewer (or the report) to just generate the requested
page and stop generating after that?
thanks
it.
When the user presses the CAncel button, ppViewer.CAncel is called and processing
seems to stop.
When the user then presses the Next page button, ppViewer.NextPage is executed
and generation of the whole report is started, in stead of just the Next
Page. How do i instruct the viewer (or the report) to just generate the requested
page and stop generating after that?
thanks
This discussion has been closed.
Comments
Once you cancel the report, you no longer have access to the pages
generated. Notice that when you cancel in the Previewer, the ability to
navigate is removed once the cancel button is pressed. Making a call the
NextPage will see that the report has not been printed and generate it so
that the report can be viewed and navigated again.
If perhaps you can keep track of which page the user cancels the report, you
could possibly use the Viewer.GotoPage routine to print and go to a specific
page.
Regards,
Nico Cizik
Digital Metaphors
http://www.digital-metaphors.com
Nico Cizik
Digital Metaphors
http://www.digital-metaphors.com
Thanks for your reply.
Does that mean that a GotoPage() does not start generating the report if
it has been cancelled?