void DoMessageBoxOK( 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 a message box containing an OK button. The message box displays the Windows information icon. The module calls the Windows function MessageBox to display the message box.
title = "Some Title";
message = "This is a sample message.";
run DoMessageBoxOK( title, message );