Hi,

I used to write apps in at the desktop that displayed
an hourglass when processing that took some time was taking place. Now, I am
looking at the .net compact framework, and I see something like a square
with a
concentric circle divided in 4 colors which is animated.
Can anybody tell me how to use this feature, I have not seen any
documentattion about it.

Thanks,
Carlos

Re: what is the name of the hourglass replacement by Darren

Darren
Wed Oct 20 09:28:01 CDT 2004

In managed code:

Cursor.Current = Cursors.WaitCuror;
// do something time consuming
Cursor.Current = Cursors.Default;

-Darren

"Carlos" <ch_sanin@yahoo.com> wrote in message
news:%23Mp%23AJqtEHA.2596@TK2MSFTNGP15.phx.gbl...
> Hi,
>
> I used to write apps in at the desktop that displayed
> an hourglass when processing that took some time was taking place. Now, I
> am
> looking at the .net compact framework, and I see something like a square
> with a
> concentric circle divided in 4 colors which is animated.
> Can anybody tell me how to use this feature, I have not seen any
> documentattion about it.
>
> Thanks,
> Carlos
>
>
>