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 SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Word macro VBA Mouse pointer

Status
Not open for further replies.

acjeff

Programmer
Aug 10, 2004
148
0
0
US
Hi,

In Word macro programming, is it possible to set the mouse pointer to glasshour while the code is processing? How to do that?

Jeff
 
Jeff,

Try this:
Code:
System.Cursor = wdCursorWait
[COLOR=green]'Macro code here[/color]
System.Cursor = wdCursorNormal


Regards,
Mike
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top