Print Preview control !!

  • Thread starter Thread starter AG
  • Start date Start date
A

AG

I am using PrintPreview control in my VB.NET application.

But when we display print preview, only the last document is shown, and I
cannot see

five or six documents there. Seems like as soon as the next opens, the
earlier document gets

overwritten. Please suggest.
 
Hi,

As far as I remember, this control is bound to a particular PrintDocument
instance. You should probably have several instances of PrintDocument and
bind the appropriate instance to the PrintPreview control when the
corresponding document is about to be previewed.
 
Back
Top