-SCS Parameter Analyzer Reference Manual Section 6:
4200A-901-01 Rev. C / February 2017 6-323
Returned values are placed in the Analyze sheet and can be:
• 3: The Abort button was selected.
• 4: The Retry button was selected.
• 5: The Ignore button was selected.
• -10050 (WINULIB_ILLEGAL_NUM_MSG): An illegal number of messages was specified.
• -10051 (WINULIB_ILLEGAL_STRING_LEN): The length of one or more messages was too
long.
• -10052 (WINULIB_NO_WINDOW_HANDLE): No window handle for Clarius was found. Clarius is
not running.
Example
status = AbortRetryIgnoreDialog(1, "This is a one line message", "", "", "");
status = AbortRetryIgnoreDialog(4, "Line one", "Line two", "Line three", "Line
Also see
None
InputOkCancelDialog user module
This user module creates a dialog box that can prompt for up to four input parameters.
Usage
status = InputOkCancelDialog(int NumOfInputs, char *Input1Prompt, char *Input1,
char *Input2Prompt, char *Input2, char *Input3Prompt, char *Input3, char
*Input4Prompt, char *Input4);
Returned values; see Details
The number of text lines to display
The text to display on the first line of the dialog box; this line must be less than 40
characters.
A character buffer for the first user input field; any text that the user inputs in the first
displayed field is stored here
The text to display on the second line of the dialog box; this line must be less than
A character buffer for the second user input field; any text that the user inputs in the
second displayed field is stored here
The text to display on the third line of the dialog box; this line must be less than 40
characters
A character buffer for the third user input field; any text that the user inputs in the
third displayed field is stored here
The text to display on the fourth line of the dialog box; this line must be less than 40
A character buffer for the fourth user input field; any text that the user inputs in the
fourth displayed field is stored here