G Guest Feb 21, 2004 #1 hi i am using c sharp and not able to change the cursor sharp to busy state when i am performing some porcessing.please tell me thanks
hi i am using c sharp and not able to change the cursor sharp to busy state when i am performing some porcessing.please tell me thanks
C Cezary Nolewajka Feb 21, 2004 #2 You can use: Cursor.Current = Cursors.WaitCursor; and as long as there is some processing going on in a WinForms application the cursor stays in the WaitCursor state. You can as well use your custom designed cursors: Cursor.Current = new Cursor("C:\\Cursors\\MyWait.cur");
You can use: Cursor.Current = Cursors.WaitCursor; and as long as there is some processing going on in a WinForms application the cursor stays in the WaitCursor state. You can as well use your custom designed cursors: Cursor.Current = new Cursor("C:\\Cursors\\MyWait.cur");
A Adrian Mascarenhas Mar 12, 2004 #3 -- hi i am using c sharp and not able to change the cursor sharp to busy Click to expand... state when i am performing some porcessing.please tell me thanks You can read the section on msdn at http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/ frlrfsystemwindowsformscursorclassctortopic1.asp and do the following if ( ..your condition...) { Cursor.Current = Cursors.WaitCursor } -- Adrian Mascarenhas, Developer Division This posting is provided "AS IS" with no warranties, and confers no rights. Note: For the benefit of the community-at-large, all responses to this message are best directed to the newsgroup/thread from which they originated.
-- hi i am using c sharp and not able to change the cursor sharp to busy Click to expand... state when i am performing some porcessing.please tell me thanks You can read the section on msdn at http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/ frlrfsystemwindowsformscursorclassctortopic1.asp and do the following if ( ..your condition...) { Cursor.Current = Cursors.WaitCursor } -- Adrian Mascarenhas, Developer Division This posting is provided "AS IS" with no warranties, and confers no rights. Note: For the benefit of the community-at-large, all responses to this message are best directed to the newsgroup/thread from which they originated.