
November 25th, 2003, 01:40 AM
|
|
Junior Member
|
|
Join Date: Oct 2003
Location: Germany
Posts: 9
Time spent in forums: < 1 sec
Reputation Power: 0
|
|
PrintPreviewDialog in C#
Hi,
I got a question concerning the PrintPreviewDialog in C#!
Code:
public void ShowPrintPreview()
{
PrintPreviewDialog previewDialog = new PrintPreviewDialog();
previewDialog.Document = this;
previewDialog.SetBounds(100, -550, 800, 800);
ShowPageSettings();
previewDialog.ShowDialog();
}
The preview the dialog shows seems to be ok, but after pushing the 'Print'-button only the second of 2 pages is printed out! Does anyone know about this problem?
Thanks in advance!
The Schnicka
|