WaitCursor: Difference between revisions
Jump to navigation
Jump to search
Created page with "WAITCURSOR true|'''false''' '''Description''' Set WAITCURSOR to true to display a wait cursor. The design of the cursor depends on the device. Set it to false to turn the wa..." |
No edit summary |
||
Line 1: | Line 1: | ||
WaitCursor true|'''false''' | |||
== Description == | |||
Set | Set WaitCursor to true to display a wait cursor. The design of the cursor depends on the device. Set it to false to turn the waitcursor off again. | ||
== Example == | |||
<pre> | <pre> | ||
Rem WaitCursor Example | |||
WaitCursor TRUE | |||
Sleep 5000 | |||
WaitCursor FALSE | |||
</pre> | </pre> | ||
== Output == | |||
<pre> | |||
</pre> | |||
[[Category:Language Reference]] |
Revision as of 04:14, 17 August 2012
WaitCursor true|false
Description
Set WaitCursor to true to display a wait cursor. The design of the cursor depends on the device. Set it to false to turn the waitcursor off again.
Example
Rem WaitCursor Example WaitCursor TRUE Sleep 5000 WaitCursor FALSE