ErrorBox procedure
|
![]() ![]() ![]() |
acUtils
|
function ErrorBox(Msg: String; Flags: LongInt);
|
Shows the "error box" with "STOP" icon and text, specified in Msg parameter.
|
procedure ErrorBox(Msg: String);
|
begin
|
MsgBox(Msg, MB_OK or MB_ICONSTOP);
|
end;
|
MsgBox and InfoBox procedures.
|