ErrorBox procedure
Return to Introduction  Previous page  Next page
Unit
acUtils  

Declaration
function ErrorBox(Msg: String; Flags: LongInt);  

Description
Shows the "error box" with "STOP" icon and text, specified in Msg parameter.  

Original code
procedure ErrorBox(Msg: String);  
begin  
  MsgBox(Msg, MB_OK or MB_ICONSTOP);  
end;  

See also
MsgBox and InfoBox procedures.