|
Question : Changing my application's mouse cursor displayed in code
|
|
Hi Experts,
I'm writing a VB.Net 2005 application that allows a user to create some XML files from database exports.
I wish to change the mouse cursor to an hourglass or something while these operations are busy
Usually I would use Cursor.Current = .....
In this case it is not working. I'm assuming that it is because I'm performing the operations using a background worker. Are there any rules or funnies that apply to changing the mouse cursor when using a seperate thread?
Please assist
Thanks
|
|
Answer : Changing my application's mouse cursor displayed in code
|
|
What about
Cursor = Cursors.WaitCursor
?
|
|
|