Supervisor
Moderator
Web-page
Email
|
| posted 2008-09-30 06:43:39 |
Delete |
You do not need to rewind the job, because MTD allows you to save every page directly, by number with SavePage() method which receives a number of page as a parameter.
1. Format="Plain";
2. SavePage(0)
3. Format="Formatted"
4. SaveAllPages()
OR,
1. Format="Plain"
2. SavePage(0)
3. Format="Formatted"
4. TransportParam("File","append") = 1
5. SavePage(1) ... SavePage(RenderedPages)
6. CancelJob()
if you do not need to have the first page to be saved twice.
| |