The way to accomplish this would be:
· | Complete all normal definitions for Page 1. |
· | Create a "New Report Page" for the second Page definition. |
· | Set the GotoPage property of the first Page to point to the second Page. |
· | Set the GotoMode property of the first Page to gmGotoNotDone setting. |
· | Complete all normal definitions for Page 2. |
· | Insure that the GotoPage property of the second Page is blank. |
The gmGotoNotDone setting of the GotoMode property will activate the GotoPage property after the first physical Page has printed but only when the current Page definition has not finished (for example, EOF - End Of File). So, at the end of physical Page 1, Page 2 definition will be started. Because the Page 2 definition does NOT have anything in the GotoPage property, the Page 2 definition will remain in effect for all remaining physical Pages until the Report is done.
|