473,385 Members | 1,907 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,385 software developers and data experts.

WaitCursor / hourglass in custom printpreview dialog

Hi,

I have created a simple custom PrintPreviewDialog consisting of a simple
standard PrintPreviewControl (.NET 1.1) on a WindowsForm with a few buttons
(for printing, zooming, etc.). It is working fine, except for that I cannot
figure out how display the waitcursor / hourglass while the preview is
preparing to show the document *and then go back to the default cursor when
the document is displayed*. Turning on the waitcursor is easy, but what
event should I hook into to turn it off??

What happens when I preview a document that is about 50 pages long is that
you get the blank form on the screen and then nothing happens for maybe 40
seconds and then you get a "Generating Preview" message and then the
document is displayed. It is during the initial 40 seconds that I need an
hourglass or something to let the users know that something is happening in
the background.

Here are some snippets of what I am doing currently:

// Constructor:
public PreviewDialog(System.Drawing.Printing.PrintDocumen t printDocument,
int zoom)
{
InitializeComponent();
_printDocument = printDocument;
_zoom = zoom;
}

private void PreviewDialog_Load(object sender, System.EventArgs e)
{
this.Cursor = Cursors.WaitCursor;
Initialize();
//this.Cursor = Cursors.Default; // This gets hit instantly, so you
never see an hourglass.
}

private void Initialize()
{
uxPrintPreview.Anchor = AnchorStyles.Bottom | AnchorStyles.Top |
AnchorStyles.Left | AnchorStyles.Right;
uxPrintPreview.Zoom = zoom;
this.WindowState = FormWindowState.Maximized;
uxPrintPreview.Document = printDocument1 = printDocument;
}

// The calling code:
using (PreviewDialog form = new PreviewDialog(c1Report1.Document))
{
form.ShowDialog(this);
}

If there was an event like LastPageFinished or DocumentRendered or similar
in the PrintPreviewControl, I would be home free, but I cannot find anything
like that.

Any help on this would be greatly appreciated.

Thanks,
Lars



Dec 18 '05 #1
6 6344

private void PreviewDialog_Load(object sender, System.EventArgs e)
{
this.Cursor = Cursors.WaitCursor;
Initialize();
//this.Cursor = Cursors.Default; // This gets hit instantly, so you
never see an hourglass.
}


You could try

Cursor.Current = Cursors.WaitCursor;

Seems to be ok when I tried it.
Dec 19 '05 #2
using (PreviewDialog form = new PreviewDialog(c1Report1.Document))
{
this.Cursor = Cursors.WaitCursor;
form.ShowDialog(this);
this.Cursor = Cursors.Default;
}

--

Derek Davis
dd******@gmail.com

"Lars" <no****@dev.null> wrote in message
news:11*************@corp.supernews.com...
Hi,

I have created a simple custom PrintPreviewDialog consisting of a simple
standard PrintPreviewControl (.NET 1.1) on a WindowsForm with a few
buttons (for printing, zooming, etc.). It is working fine, except for
that I cannot figure out how display the waitcursor / hourglass while the
preview is preparing to show the document *and then go back to the default
cursor when the document is displayed*. Turning on the waitcursor is
easy, but what event should I hook into to turn it off??

What happens when I preview a document that is about 50 pages long is that
you get the blank form on the screen and then nothing happens for maybe 40
seconds and then you get a "Generating Preview" message and then the
document is displayed. It is during the initial 40 seconds that I need an
hourglass or something to let the users know that something is happening
in the background.

Here are some snippets of what I am doing currently:

// Constructor:
public PreviewDialog(System.Drawing.Printing.PrintDocumen t printDocument,
int zoom)
{
InitializeComponent();
_printDocument = printDocument;
_zoom = zoom;
}

private void PreviewDialog_Load(object sender, System.EventArgs e)
{
this.Cursor = Cursors.WaitCursor;
Initialize();
//this.Cursor = Cursors.Default; // This gets hit instantly, so you
never see an hourglass.
}

private void Initialize()
{
uxPrintPreview.Anchor = AnchorStyles.Bottom | AnchorStyles.Top |
AnchorStyles.Left | AnchorStyles.Right;
uxPrintPreview.Zoom = zoom;
this.WindowState = FormWindowState.Maximized;
uxPrintPreview.Document = printDocument1 = printDocument;
}

// The calling code:
using (PreviewDialog form = new PreviewDialog(c1Report1.Document))
{
form.ShowDialog(this);
}

If there was an event like LastPageFinished or DocumentRendered or similar
in the PrintPreviewControl, I would be home free, but I cannot find
anything like that.

Any help on this would be greatly appreciated.

Thanks,
Lars


Dec 19 '05 #3
>> private void PreviewDialog_Load(object sender, System.EventArgs e)
{
this.Cursor = Cursors.WaitCursor;
Initialize();
//this.Cursor = Cursors.Default; // This gets hit instantly, so you
never see an hourglass.
}


You could try

Cursor.Current = Cursors.WaitCursor;

Seems to be ok when I tried it.

No, that does not make a difference. The problem is not to change to a
WaitCursor, but rather to know when to change it back to a default cursor.
For example, in my snippet above, I commented out "this.Cursor =
Cursors.Default" since it gets hit almost instantly (way before the page is
rendered), so you never see an hourglass.
Dec 19 '05 #4

"carion1" <ddavis76 _at_ gmail _dot_ com> wrote in message
news:e7**************@TK2MSFTNGP14.phx.gbl...
using (PreviewDialog form = new PreviewDialog(c1Report1.Document))
{
this.Cursor = Cursors.WaitCursor;
form.ShowDialog(this);
this.Cursor = Cursors.Default;
}

--

Derek Davis
dd******@gmail.com


If you read my post again, you'll see that I intentionally commented out
"this.Cursor = Cursors.Default;" since it does not work were it is. That
line gets hit almost instantly (way before the page is rendered), so you
never see an hourglass. What I am looking for is a a place to put that line
so that it gets hit AFTER the delay that takes place (while the preview
control is preparing the document to be viewed, or whatever it is doing).
In other words: before calling the preview control, I want to turn on the
hourglass and when the document is displayed in the preview I want to turn
off the hourglass.

Lars
Dec 19 '05 #5
The code I posted was the "calling" code. Could move the Cursor changes
outside of the using statement if you like.

--

Derek Davis
dd******@gmail.com

"Lars" <no****@dev.null> wrote in message
news:11*************@corp.supernews.com...

"carion1" <ddavis76 _at_ gmail _dot_ com> wrote in message
news:e7**************@TK2MSFTNGP14.phx.gbl...
using (PreviewDialog form = new PreviewDialog(c1Report1.Document))
{
this.Cursor = Cursors.WaitCursor;
form.ShowDialog(this);
this.Cursor = Cursors.Default;
}

--

Derek Davis
dd******@gmail.com


If you read my post again, you'll see that I intentionally commented out
"this.Cursor = Cursors.Default;" since it does not work were it is. That
line gets hit almost instantly (way before the page is rendered), so you
never see an hourglass. What I am looking for is a a place to put that
line so that it gets hit AFTER the delay that takes place (while the
preview control is preparing the document to be viewed, or whatever it is
doing). In other words: before calling the preview control, I want to turn
on the hourglass and when the document is displayed in the preview I want
to turn off the hourglass.

Lars

Dec 19 '05 #6

"carion1" <ddavis76 _at_ gmail _dot_ com> wrote in message
news:ur**************@TK2MSFTNGP11.phx.gbl...
The code I posted was the "calling" code. Could move the Cursor changes
outside of the using statement if you like.


I understand. The problem with that approach is that ShowDialog() does not
return until the preview window is closed. So even after the document is
rendered and displayed, the cursor remains an hourglass.

Lars
Dec 20 '05 #7

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
by: LARB | last post by:
Good morning, I have a print routine where I use a "printpreview dialog' control. The text is perfect BUT when I then print the job all the text is completely crazy, a bit like...
1
by: Randy | last post by:
Hello, I'm trying to print a simple string using the PrintPreviewDialog. I get the string to show up in the PrintPreview dialog, but when I click the Printer icon, it just prints a blank page....
2
by: seash | last post by:
H i had set WaitCursor for some processing in my application, This works fine for my Windowsform, but i want to extend this wait cursor to all other programs i.e only waitcursor(hourglass) should...
2
by: KarenP | last post by:
In my Windows Forms application, while executing a process that takes some time, I am changing the cursor to the hourglass by setting Cursor.Current = Cursors.WaitCursor. This is working just...
2
by: Lenster | last post by:
I am trying to show an hourglass mouse cursor and disable the main form whilst waiting for some activity to finish. The problem I have come across is that as soon as you disable the main form the...
1
by: veerleverbr | last post by:
Hi, In my VB.NET code, at a certain moment I set the cursor to the hourglass: Cursor = System.Windows.Forms.Cursors.WaitCursor Then a lot of things happen in my form, but also in other...
11
by: Adam Right | last post by:
Hi, I am using .Net Framework 2.0 final, and i use .Net printing library to print a document. I use printPreview dialog to print the document but after preview was shown, when i press the...
1
by: mtczx232 | last post by:
A. I remember microsoft add some features about WaitCursor in Window.Forms, but I not find it now? B. I have some Try..Catch in some module and it's suppose to be long time. I need to change...
2
by: eBob.com | last post by:
I have a print application modeled on a program which I found via this newsgroup. (I still have comments in German in it!) The model uses ExtendedPrintPreviewDialog but I don't seem to have that...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.