Hi,
We have recently migrated VB6 application to VB.NET.
In VB6 :
MousePointer = HOURGLASS
.....
......Some code
.......
MousePointer = DEFAULT.
In VB.Net:
We are using
Cursor.Current = Cursors.WaitCursor
.....
......Some code
.......
Cursor.Current = Cursors.Default
I used Application wait cursor also like this.
Application.UseWaitCursor = True
.....
Application.UseWaitCursor = False
Problem :
The problem is that when the process is executing the cursor does not change to the hourglasss.
Thanks
Raju