|
InfoBox procedure
|
|
| acUtils
|
| function InfoBox(Msg: String);
|
| Shows the "information box" with "I" icon and text, specified in Msg parameter.
|
| procedure InfoBox(Msg: String);
|
| begin
|
| MsgBox(Msg, MB_OK or MB_ICONINFORMATION);
|
| end;
|
| MsgBox and ErrorBox procedures.
|