| JezUK Ltd - .NET Annoyances: PrintPreviewDialog can not be used as an MDI child window |
| << Previous | March 2006 | Next >> |
Change
PrintPreviewDialog ppd = new PrintPreviewDialog();
ppd.Document = printDoc;
ppd.ShowDialog(this);
to
PrintPreviewDialog ppd = new PrintPreviewDialog();
ppd.Document = printDoc;
ppd.MdiParent = this;
ppd.WindowState = FormWindowState.Maximized;
ppd.Show();
get
The Forest Road Reader, No 37 (1)
The Forest Road Reader, No 19 (1)
The Forest Road Reader, No 17 (1)
The Forest Road Reader, No 10 (1)