I am struggling big time to get the cursor to show while I am doing
some other process, however nothing is showing up, how do I make the
cursor appear before a process?

I have the following code but it did not help

Cursor.Current = Cursors.WaitCursor;
Cursor.Show();
< my process... >
Cursor.Current = Cursors.Default;
Cursor.Hide();

I am using PocketPC 2002, developing from VStudio.NET 2003 in C#.

Thank you,

Re: Cursor.Wait in C# by Alex

Alex
Wed Jul 16 17:50:36 CDT 2003

Are you doing this on the emulator? Emulator does not handle cursors very
well and will attempt to display regular Windows hourglass cursor
"Henok" <google@henok.com> wrote in message
news:63335f79.0307161224.61d81c07@posting.google.com...
> I am struggling big time to get the cursor to show while I am doing
> some other process, however nothing is showing up, how do I make the
> cursor appear before a process?
>
> I have the following code but it did not help
>
> Cursor.Current = Cursors.WaitCursor;
> Cursor.Show();
> < my process... >
> Cursor.Current = Cursors.Default;
> Cursor.Hide();
>
> I am using PocketPC 2002, developing from VStudio.NET 2003 in C#.
>
> Thank you,



Re: Cursor.Wait in C# by Henok

Henok
Wed Jul 16 20:20:18 CDT 2003

yes, thanks for the input, now all is working just fine!!!
all this while i was testing it on the emulator...

"Alex Feinman [MVP]" <public_news@alexfeinman.com> wrote in message
news:OZIvsy%23SDHA.2004@TK2MSFTNGP11.phx.gbl...
> Are you doing this on the emulator? Emulator does not handle cursors very
> well and will attempt to display regular Windows hourglass cursor
> "Henok" <google@henok.com> wrote in message
> news:63335f79.0307161224.61d81c07@posting.google.com...
> > I am struggling big time to get the cursor to show while I am doing
> > some other process, however nothing is showing up, how do I make the
> > cursor appear before a process?
> >
> > I have the following code but it did not help
> >
> > Cursor.Current = Cursors.WaitCursor;
> > Cursor.Show();
> > < my process... >
> > Cursor.Current = Cursors.Default;
> > Cursor.Hide();
> >
> > I am using PocketPC 2002, developing from VStudio.NET 2003 in C#.
> >
> > Thank you,
>
>