How can the mousepointer be changed?
I would like to change the mousepointer to an hourglass when a script is run in explorer. The following .vbs file is an example...
(change the mouse pointer to an hourglass here)
For I = 0 to 1000000
I=I+1
Next
Msgbox "the mousepointer should still be an hourglass"
(change the mouse pointer back to the previous status here)
|