|
MsgBox procedure
|
|
| acUtils
|
| function MsgBox(Msg: String; Flags: LongInt);
|
| Shows the message box with specified text (Msg parameter) and flags (Flags parameter).
|
| function MsgBox(Msg: String; Flags: LongInt): Integer;
|
| begin
|
| Result := Application.MessageBox(PChar(Msg), PChar(Application.Title), Flags);
|
| end;
|
| InfoBox and ErrorBox procedures.
|