Click to See Complete Forum and Search --> : [RESOLVED] Display hour glass mouse pointer,during Files getting Copied


remya1000
09-14-2007, 11:05 AM
i'm using VB.NET.

when a button is clicked the utility will display an hour glass mouse pointer, and it will begin copying the Utility settings from one computer to another computer on the network. Upon completion of these steps, the mouse pointer will return to it’s default style and the program will exit.

any one have any idea how to display a Hour Glass Mouse Pointer? and when that settings starts coping to another computer, how can we display an hour glass mouse pointer and when the settings finished copying, how can we return to default mouse pointer. how we will know the copying got over.

if you have anyidea please let me know. and if you can provide any examples, then that will be a great help for me.

thanks in advance.

Mr Moo
09-14-2007, 12:01 PM
Cursor.Current = Cursors.WaitCursor when you start and Cursor.Current = Cursors.Default when you're done.

remya1000
09-14-2007, 12:06 PM
heah its working by using your code...

thanks a lot for your help...