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

Code Examples
Code Snippet
#Turn on compressor #12, but only if the user has the right credentials.
if 'Supervisor' in system.security.getRoles():
updateQuery = "UPDATE CompressorControl SET running=1 WHERE compNum = 12"
system.db.runUpdateQuery(updateQuery)
else:
errorMessage = "Unable to turn on Compressor 12."
errorMessage += " You don't have proper security privileges."
system.gui.errorBox(errorMessage)