TClrMessageBox Class

Displays a message window, also known as a dialog box, which presents a message to the user. It is a modal window, blocking other actions in the application until the user closes it. A MessageBox can contain text, buttons, and symbols that inform and instruct the user.

Namespace: CNClrLib.Control.Base
TObject
  CNClrLib.Control.Base.TClrMessageBox
type
 TClrMessageBox = Class
 end;

The TClrMessageBox type exposes the following members.

Show:
 NameDescription
Show(String)

Overloaded. Displays a message box with specified text.

Show(String,String)

Overloaded. Displays a message box with specified text and caption.

Show(String,String,TMessageBoxButtons)

Overloaded. Displays a message box with specified text, caption, and buttons.

Show(String,String,TMessageBoxButtons,TMessageBoxIcon)

Overloaded. Displays a message box with specified text, caption, buttons, and icon.

Show(String,String,TMessageBoxButtons,TMessageBoxIcon,TMessageBoxDefaultButton)

Overloaded. Displays a message box with the specified text, caption, buttons, icon, and default button.

Show(String,String,TMessageBoxButtons,TMessageBoxIcon,TMessageBoxDefaultButton,TMessageBoxOptions_Set)

Overloaded. Displays a message box with the specified text, caption, buttons, icon, default button, and options

Show(String,String,TMessageBoxButtons,TMessageBoxIcon,TMessageBoxDefaultButton,TMessageBoxOptions_Set,Boolean)

Overloaded. Displays a message box with the specified text, caption, buttons, icon, default button, options, and Help button.

Show(String,String,TMessageBoxButtons,TMessageBoxIcon,TMessageBoxDefaultButton,TMessageBoxOptions_Set,String)

Overloaded. Displays a message box with the specified text, caption, buttons, icon, default button, options, and Help button, using the specified Help file.

Show(String,String,TMessageBoxButtons,TMessageBoxIcon,TMessageBoxDefaultButton,TMessageBoxOptions_Set,String,String)

Overloaded. Displays a message box with the specified text, caption, buttons, icon, default button, options, and Help button, using the specified Help file and Help keyword.

Show(String,String,TMessageBoxButtons,TMessageBoxIcon,TMessageBoxDefaultButton,TMessageBoxOptions_Set,String,THelpNavigator)

Overloaded. Displays a message box with the specified text, caption, buttons, icon, default button, options, and Help button, using the specified Help file and HelpNavigator.

Show(String,String,TMessageBoxButtons,TMessageBoxIcon,TMessageBoxDefaultButton,TMessageBoxOptions_Set,String,THelpNavigator,Olevariant)

Overloaded. Displays a message box with the specified text, caption, buttons, icon, default button, options, and Help button, using the specified Help file, HelpNavigator, and Help topic.

Show(TWinControl,String)

Overloaded. Displays a message box in front of the specified object and with the specified text.

Show(TWinControl,String,String)

Overloaded. Displays a message box in front of the specified object and with the specified text and caption.

Show(TWinControl,String,String,TMessageBoxButtons)

Overloaded. Displays a message box in front of the specified object and with the specified text, caption, and buttons.

Show(TWinControl,String,String,TMessageBoxButtons,TMessageBoxIcon)

Overloaded. Displays a message box in front of the specified object and with the specified text, caption, buttons, and icon.

Show(TWinControl,String,String,TMessageBoxButtons,TMessageBoxIcon,TMessageBoxDefaultButton)

Overloaded. Displays a message box in front of the specified object and with the specified text, caption, buttons, icon, and default button.

Show(TWinControl,String,String,TMessageBoxButtons,TMessageBoxIcon,TMessageBoxDefaultButton,TMessageBoxOptions_Set)

Overloaded. Displays a message box in front of the specified object and with the specified text, caption, buttons, icon, default button, and options.

Show(TWinControl,String,String,TMessageBoxButtons,TMessageBoxIcon,TMessageBoxDefaultButton,TMessageBoxOptions_Set,String)

Overloaded. Displays a message box with the specified text, caption, buttons, icon, default button, options, and Help button, using the specified Help file.

Show(TWinControl,String,String,TMessageBoxButtons,TMessageBoxIcon,TMessageBoxDefaultButton,TMessageBoxOptions_Set,String,String)

Overloaded. Displays a message box with the specified text, caption, buttons, icon, default button, options, and Help button, using the specified Help file and Help keyword.

Show(TWinControl,String,String,TMessageBoxButtons,TMessageBoxIcon,TMessageBoxDefaultButton,TMessageBoxOptions_Set,String,THelpNavigator)

Overloaded. Displays a message box with the specified text, caption, buttons, icon, default button, options, and Help button, using the specified Help file and HelpNavigator.

Show(TWinControl,String,String,TMessageBoxButtons,TMessageBoxIcon,TMessageBoxDefaultButton,TMessageBoxOptions_Set,String,THelpNavigator,Olevariant)

Overloaded. Displays a message box with the specified text, caption, buttons, icon, default button, options, and Help button, using the specified Help file, HelpNavigator, and Help topic.

Top