Restart Reports after Network Break

  • Thread starter Thread starter SharonInGa
  • Start date Start date
S

SharonInGa

My application is configured to run and print several
reports for many accounts that may take several hours.
Sometimes, however, the connection between the application
and the network breaks the report running process.

I've created a combo box (cboRestartReports) that allows
the user to select the account number where the break
occurred so that he does not have to begin the process
from the beginning. How do I code the application to
allow the process to re-start at the break point which is
determined by the account number the user selects from the
combo box?
 
the answer to that will depend on factors that you have not disclosed.
Assuming the simplest scenario, accounts are printed in ascending account
number order open the report with a whereclause specifying account number
greater than or equal to cboRestartReports
 
Back
Top