M
Mike
That is exactly what I am looking for. Just one thing,
after I turn the cursor into a wait cursor, is there a
way to disable all the controls (e.g buttons, textboxes)
so that I can't click on anything, or do I have to
disable each control individually. Again , thanks for
the reply.
after I turn the cursor into a wait cursor, is there a
way to disable all the controls (e.g buttons, textboxes)
so that I can't click on anything, or do I have to
disable each control individually. Again , thanks for
the reply.
..-----Original Message-----
Mike,
Something along these lines:
-------------
Cursor = Cursors.WaitCursor;
// ... do processing
Cursor = Cursors.Arrow;
-------------
Is this what you were looking for?
Regards,
Alex
.