STORE KEY

Stores Action Block Define Via ON KEY Command To a Variable

STORE KEY <Key> OF <WindowName> TO <bVar>


SYSTEM OBJECT

Gives Access To Operating System Properties

System object will allow to read and write (when possible) various operating system properties.

Current implementation allows to access (read and write) the system clipboard and various system properties (read only).

Syntax:

System.Clipboard
System.Clipboard := <cString>
System.EmptyClipboard
System.DesktopWidth
System.DesktopHeight
 System.DefaultPrinter
 System.DesktopFolder
 System.MyDocumentsFolder
 System.ProgramFilesFolder
 System.SystemFolder
 System.TempFolder
 System.WindowsFolder

Samples:

 System.Clipboard := 'a string'
 <...>
 MsgInfo(System.Clipboard)
 <...>
 MsgInfo(System.DesktopWidth)
 <...>
 MsgInfo(System.DesktopHeight)
 <...>
 MsgInfo(System.DefaultPrinter)

UNCOMPRESS

Uncompress a Zip File

UNCOMPRESS [ FILE ] <cZipFile> [ BLOCK <bBlock> ]


WAIT WINDOW

Shows a Message Window

WAIT WINDOW <cMessage> [ NOWAIT ] | CLEAR

This command shows a window with a custom message and pauses program execution until a key is pressed or mouse is clicked.

When optional NOWAIT clause is specified program execution continue after message is displayed. To hide the message window WAIT CLEAR must be used.

This command must be used only after main window was activated.

Sample 1:

WAIT WINDOW "Press any key to continue"

Sample 2:

WAIT WINDOW "Processing" NOWAIT
 <...>
WAIT CLEAR

results matching ""

    No results matching ""