View Single Post
 
Old 08-26-2022, 04:13 PM
rollis13's Avatar
rollis13 rollis13 is offline Windows 10 Office 2016
Competent Performer
 
Join Date: Jan 2021
Location: Cordenons
Posts: 143
rollis13 will become famous soon enough
Default

Here is how I managed to see the wdCursorWait:
Code:
Option Explicit
Sub test()
    Dim a
    ' Set status bar text
    StatusBar = ("Please wait...")
    ' Turn cursor to wait
    ' My script runs here...
    For a = 1 To 2000
        System.Cursor = wdCursorWait              '<- here
        Selection.TypeText Text:="1"
    Next a
    ' Turn cursor back to normal.
    StatusBar = ("Complete")
    System.Cursor = wdCursorNormal
End Sub
Reply With Quote