A Messagebox with configurable Text and a Ok Button
Source position: MUIClass.Dialog.pas line 104
procedure ShowMessage( |
Text: string; |
HeadText: string = 'Message'; |
OKText: string = '_OK' |
); |
Text |
|
Text to show in the Messagebox |
HeadText |
|
Text in the Window title of the Messagebox, when this parameter is not supplied 'Message' is used. |
Example:
ShowMessage('Everything ok'); ShowMessage('Something went wrong', 'Warning');
|
Open a MessageBox with Text and configurable Buttons |