DoMessageBoxOK

Prototype

void DoMessageBoxOK( 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 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.

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

DoErrorMessageBoxOK