Thank you doananhtai! It works perfect. It was easy, but thank you for being the one to tell how to do it. Cheers, miguelji
miguelji
Posts
-
Windows Mobile Waiting Cursor -
Windows Mobile Waiting CursorYes you are right, I was not leaving any detail. I need to show the waiting cursor while my program performs a series of time consuming tasks. I've isolated the problem and created a WM6 (CF 3.5) application with a single form and a single button in it. Then I write the following code for the click event of the button (I use VB, but this would be the C# equivalent): ---------------------------------------------- Cursor c = default(Cursor); c = Cursors.WaitCursor; this.Refresh(); int I = 0; int J = 0; for (I = 1; I <= 10000000; I++) { J = I * 3; } c = Cursors.Default; this.Refresh(); ---------------------------------------------- I run the programa, click the button and nothing happens, no cursor is displayed. What Am I doing wrong here? Thanks, miguelji
-
Windows Mobile Waiting CursorTat was my first try, but in a Windows Mobile 6 device it doesn't work. I'm probably doing something wrong, but it is so simple that I dont know what can be wrong. miguelji
-
Windows Mobile Waiting CursorDear All, How can I show the Windows Mobile circular waiting cursor from my form? I'm sure it is very easy, but I've been looking for the solution form some time now without aany success. Thanks in advance, miguelji