InfoBox procedure
Return to Introduction  Previous page  Next page
Unit
acUtils  

Declaration
function InfoBox(Msg: String);  

Description
Shows the "information box" with "I" icon and text, specified in Msg parameter.  

Original code
procedure InfoBox(Msg: String);  
begin  
  MsgBox(Msg, MB_OK or MB_ICONINFORMATION);  
end;  

See also
MsgBox and ErrorBox procedures.