System::MessageBox
System::MessageBox method creates and displays a window that contains an application-supplied message and caption.
This method requires user permissions to be set for PROMPT_USER_SECURITY_EXCEPTIONS.
public System::MessageBox( WString Message, WString Title = TVariable::None Integer Type = TVariable::None : Integer Result );
Parameters
| Message | An Unicode WString containing the message to be displayed. |
| Title | An Unicode WString containing the MessageBox title to be displayed. |
| Type | Will default to MB_TASKMODAL|MB_ICONINFORMATION. |
| Result | The Results returned by the system call the MessageBox. |
Return Values
The error.errorCode value will be set to the underlining windows error message code and the error.errorString will have a detailed description of the error.
Remarks
- Since TScript v1.3, System::MessageBox requires user permission via CTScript::SetParameter to be set to PROMPT_USER_SECURITY_EXCEPTIONS before this method will be allowed to work.
Example Use
System::MessageBox(L"Hello to all, I have made this position in the script");
Requirements
TScript Version: 1.0

