Wait Cursor for WM 5.0+
Mobile
4
Posts
3
Posters
0
Views
1
Watching
-
Does somebody know how to show/hide the 'wait cursor' for WM 5.0 or above? I'm writing in VS 2005 C++ 'native code', but code should be enough.
-
Does somebody know how to show/hide the 'wait cursor' for WM 5.0 or above? I'm writing in VS 2005 C++ 'native code', but code should be enough.
Hi,
private DoProcess()
{
Cursor.Current = Cursors.WaitCursor;
/*
Write your own code here
*/Cursor.Current = Cursors.Default;
}
Hope that this may be help
Pavan Pareta
-
Does somebody know how to show/hide the 'wait cursor' for WM 5.0 or above? I'm writing in VS 2005 C++ 'native code', but code should be enough.