OPENANALYSISWINDOW

Opens a new analysis window.

Syntax:

OPENANALYSISWINDOW type, settingsfilename

Discussion:

The type argument is a 3 character string code that indicates the type of analysis to be performed. For the full list of string codes, see the " String Codes " section of the The Programming Tab. If no string code is provided or recognized, no window is opened. The settingsfilename contains the name of the CFG settings file to use. If this argument is missing, the default settings will be used.

Related Functions:

WINL, WINN

Related Keywords:

CLOSEWINDOW, MODIFYSETTINGS

Example:

FORMAT 0.0
PRINT "There are ", WINN(), " Windows currently open."
OPENANALYSISWINDOW "mtf"
PRINT "Just opened window ", WINL(), "."
PAUSE TIME, 3000
PRINT "There are ", WINN(), " Windows currently open."
CLOSEWINDOW WINL()
PAUSE TIME, 1000
PRINT "There are ", WINN(), " Windows currently open."

Next: