Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

I need to change the pointer to an Hourglass in Word 97 2

Status
Not open for further replies.

TimSzrejter

Programmer
Feb 13, 2001
18
0
0
US
I need help changing the pointer to an Hourglass symbol in word 97 through code, while some VBA code execution is taking place. The processing of the document may take awhile and I don't want the user to see just a pointer and a blank screen. Will change back to pointer at end of code.

Thanks,
Timothy Szrejter
 
You need to use the system.cursor property.

Example:

For i = 1 To 9999
System.Cursor = wdCursorWait
Next i

System.Cursor = wdCursorNormal
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top