DoErrorMessageBoxOK

Prototype

void DoErrorMessageBoxOK( String sTitle, String sMessage )

Parameters

String sTitle
The title of the message box.

String sMessage
The message to be displayed by the message box.

Remarks

This module displays an error message box containing an OK button. The message box displays the Windows exclamation icon. The module calls the Windows function MessageBox to display the message box.

Example
title = "Some Title";
message = "This is a sample message.";
run DoErrorMessageBoxOK( title, message );
See Also

DoMessageBoxOK