Top  | Previous | Next

system.gui.errorBox

Description

Displays an error-style message box to the user.

Syntax

system.gui.errorBox(message [, title])

Parameters

String message - The message to display in an error box.

String title - The title for the error box. [optional]

Returns

nothing

Scope

Client

Examples

Turn on compressor #12, but only if the user has the right credentials.

 

if 'Supervisor' in system.security.getRoles():
    system.db.runUpdateQuery("UPDATE CompressorControl SET running=1 WHERE compNum = 12")
else:
    system.gui.errorBox("Unable to turn on Compressor 12. You don't have proper security privileges."

 

See also:

system.gui.messageBox

system.gui.warningBox