WaitCursor(Boolean: Boolean)
Wait Cursor function sets the application cursor to an hour glass to provide UI feedback during a script.
WaitCursor function syntax has these named arguments:
Parameter |
Description |
|---|---|
Boolean |
Required. If True, sets the application cursor to an hour glass. If False, sets application cursor to its default. |
For example:
WaitCursor(True)Try Dim Delay as Number Delay = 0 Do Delay = Delay + 1 Loop Until Delay > 100000 Finally WaitCursor(False)End Try