I have one CF C# program that performs a lengthy calculation. How can I
display a busy or in progress indicator so that the user knows the program
is working?

Thanks.

Re: "Spinning" Cursor by Peter

Peter
Tue Nov 04 16:02:16 CST 2003

Cursor.Current = Cursors.WaitCursor

then to remove:-

Cursor.Current = Cursors.Default


Peter

--
Peter Foot
Windows Embedded MVP
OpenNETCF.org Senior Advisor
www.inthehand.com | www.opennetcf.org

"Thomas Mone" <tjmone@worldnet.att.net> wrote in message
news:r9Vpb.205476$0v4.16187997@bgtnsc04-news.ops.worldnet.att.net...
> I have one CF C# program that performs a lengthy calculation. How can I
> display a busy or in progress indicator so that the user knows the program
> is working?
>
> Thanks.
>
>



Re: "Spinning" Cursor by Thomas

Thomas
Tue Nov 04 16:49:59 CST 2003

Thanks - it looks great.
"Peter Foot [MVP]" <feedback@nospam-inthehand.com> wrote in message
news:OOV3O9xoDHA.684@TK2MSFTNGP09.phx.gbl...
> Cursor.Current = Cursors.WaitCursor
>
> then to remove:-
>
> Cursor.Current = Cursors.Default
>
>
> Peter
>
> --
> Peter Foot
> Windows Embedded MVP
> OpenNETCF.org Senior Advisor
> www.inthehand.com | www.opennetcf.org
>
> "Thomas Mone" <tjmone@worldnet.att.net> wrote in message
> news:r9Vpb.205476$0v4.16187997@bgtnsc04-news.ops.worldnet.att.net...
> > I have one CF C# program that performs a lengthy calculation. How can I
> > display a busy or in progress indicator so that the user knows the
program
> > is working?
> >
> > Thanks.
> >
> >
>
>



Re: "Spinning" Cursor by Geoff

Geoff
Tue Nov 04 18:12:42 CST 2003

The FAQ at the bottom of my signature is an excellent source for these types
of questions:

5.7. How do I set the waiting cursor?
http://msdn.microsoft.com/mobility/prodtechinfo/devtools/netcf/FAQ/default.aspx#5.7

--
Geoff Schwab
Program Manager
Excell Data Corporation
http://msdn.com/mobility
http://msdn.microsoft.com/mobility/prodtechinfo/devtools/netcf/FAQ/default.aspx

This posting is provided "AS IS" with no warranties, and confers no rights.
"Thomas Mone" <tjmone@worldnet.att.net> wrote in message
news:r9Vpb.205476$0v4.16187997@bgtnsc04-news.ops.worldnet.att.net...
> I have one CF C# program that performs a lengthy calculation. How can I
> display a busy or in progress indicator so that the user knows the program
> is working?
>
> Thanks.
>
>