IWinApplicationClass.ExclamationBox

Syntax

ExclamationBox(Message: String; [ParentWindow: IWin32Window = Null]);

Parameters

Message. The message to be displayed in the warning box.

ParentWindow. The parent window, for which the dialog box opens modally. The Null value is passed by default, and the dialog box opens modally for the current window.

Description

The ExclamationBox method opens a standard warning message dialog box.

Comments

It is used only in the desktop application.

The dialog box contains only the OK button and looks as follows:

Example

Executing the example requires a form and a button named Button1 on the form.

Sub Button1OnClick(Sender: Object; Args: IMouseEventArgs);
Begin
    WinApplication.ExclamationBox("Settings saved. Restart the application to apply settings.");
End Sub Button1OnClick;

Clicking the button opens the warning box.

See also:

IWinApplicationClass