forcing a formfeed with PrintDocument

  • Thread starter Thread starter Dave Cullen
  • Start date Start date
D

Dave Cullen

How do I force a new page when printing with PrintDocument? I put a
vbFormFeed in there after my footer and it gets ignored.

Thanks

Dave
 
Hi Dave,
How do I force a new page when printing with PrintDocument? I put a
vbFormFeed in there after my footer and it gets ignored.

Maybe you "print" an empty page. So if your routine says "FormFeed", you
set HasMorePages to True and ensure that the next time the printing goes
into the PrintPage routine, there are not data printed.

Best regards,

Martin
 
Back
Top