To Hide Print Status Box

I want to print multiple images from my window form, i'm using PrintDocument and PrintDialogBox for this. While printing it shows Print Status Box displaying printing page staus. I want to Hide this status Box. Can anyone suggest me how i can do this. I'm using C# lang. for this

[288 byte] By [Hit] at [2007-12-16]
# 1
See http://msdn.microsoft.com/msdnmag/issues/03/02/PrintinginNET/default.aspx

"The default print controller is of type PrintControllerWithStatusDialog. So, if you want to turn off the print status dialog, you'll need to use the StandardPrintController. "

maxlogic at 2007-9-8 > top of Msdn Tech,Windows Forms,Windows Forms General...
# 2
maxlogic is correct.

The StandardPrintController hides the print status dialog box. I have a similar problem when using the PrintPreviewControl in a full screen application. The nasty "Generating Previews" pop-up cannot be surpressed and causes the status bar to show. No help on the post yet: http://forums.microsoft.com/msdn/ShowPost.aspx?PostID=63917

- nava

Nava at 2007-9-8 > top of Msdn Tech,Windows Forms,Windows Forms General...
# 3
The 'Generating Previews' dialog is shown while calculating the layout for pages in OnPaint(). One of our devs suggested the only way to avoid this dialog is to override the OnPaint, do your own layout- passing your own PrintController and not calling the base.
BenWillett at 2007-9-8 > top of Msdn Tech,Windows Forms,Windows Forms General...
# 4

Hello Hit,
Did you find the solution to your problem. If so please post the solution even I am having the same problem and I tried pretty much everywhere but I cant seem to find the solution.

Thanks

Senthil

csenthil at 2007-9-8 > top of Msdn Tech,Windows Forms,Windows Forms General...