> Hi,
> I am using the below code for displaying the Wait cursor.
[quoted text clipped - 11 lines]
> Thanks in Advance,
> Murthy
You may find that there is probably a dealy in loading objects, forms
before the cursor shows.
i.e you may need to set cursor state before instantiating objects or
loading forms. As they are things that can take time.
I have also had this issue and still do in some places. Sometimes
using application.doevents can help
Paul.
Jerod Houghtelling - 28 Jun 2007 18:22 GMT
I don't know if it will help or not, but you might try to do an
Application.DoEvents() call after setting the cursor.
Cursor.Current = Cursors.WaitCursor;
Application.DoEvents();