I am shelling a small program from within my program and every time it Shell's it, the mousepointer changes to vbHourglass. I would like the mousepointer to remain vbDefault... is there any way to do this?
Printable View
I am shelling a small program from within my program and every time it Shell's it, the mousepointer changes to vbHourglass. I would like the mousepointer to remain vbDefault... is there any way to do this?
Hi,
I havn't tried this, but its worth a stab.
Add this statement:
If Screen.MousePointer = vbHourGlass Then
Screen.MousePointer = vbDefault
End If
GRAHAM :)