R
R-D-C
Hi,
I have a process that takes a good ten seconds and want to show an hourglass
mouse pointer.
I am using:
this.Cursor = Cursors.WaitCursor;
Application.DoEvents();
// Long thing
this.Cursor = Cursors.Default;
.... when I run this, the pointer does not change shape until after the long
thing at which point I want it to change back
Can anybody help please?
I have a process that takes a good ten seconds and want to show an hourglass
mouse pointer.
I am using:
this.Cursor = Cursors.WaitCursor;
Application.DoEvents();
// Long thing
this.Cursor = Cursors.Default;
.... when I run this, the pointer does not change shape until after the long
thing at which point I want it to change back
Can anybody help please?