void DoErrorMessageBoxOK( String sTitle, String sMessage )
String sTitle
The title of the message box.
String sMessage
The message to be displayed by the message box.
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.
title = "Some Title"; message = "This is a sample message."; run DoErrorMessageBoxOK( title, message );