WaitCursor: Difference between revisions

From NSB App Studio
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'''
WaitCursor true|'''false'''


'''Description'''
== 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.
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'''
== Example ==


<pre>
<pre>
REM WAITCURSOR Example
Rem WaitCursor Example
WAITCURSOR TRUE
WaitCursor TRUE
SLEEP 5000
Sleep 5000
WAITCURSOR FALSE
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

Output