I would like for a user of one of my forms be able to have some
indication that a macro is or is not running. There is a custom
toolbar that has the macro button on it. Any way to make the
button's appearance change when the macro runs. Or any other
ideas of how a user can quickly ascertain the status of a macro?

TIA - Steve

RE: Visual Indicator that macro is running? by anonymous

anonymous
Mon Jan 26 10:21:04 CST 2004

Hi Steve

Maybe you could use something like the following

System.Cursor = wdCursorWai
''' your routin
System.Cursor = wdCursorNorma

HTH,
Dave

RE: Visual Indicator that macro is running? by Steve

Steve
Mon Jan 26 10:21:42 CST 2004

Thanks much - it works!!

=?Utf-8?B?RGF2ZSBMZXR0?= <anonymous@discussions.microsoft.com>
wrote in news:6B42A985-0932-4AA0-A6D3-
20BA628953EC@microsoft.com:

> Hi Steve,
>
> Maybe you could use something like the following:
>
> System.Cursor = wdCursorWait
> ''' your routine
> System.Cursor = wdCursorNormal
>
>
> HTH,
> Dave
>