Difference between revisions of "Alert"
From SCAR Divi Manual
(Created page with "==Definition== <func>procedure Alert(const s: AnsiString);</func> ==Availability== SCAR Divi 3.20 > Current ==Description== Shows an alert similar to those of Windows Live Mess...") |
|||
| (2 intermediate revisions by the same user not shown) | |||
| Line 1: | Line 1: | ||
==Definition== | ==Definition== | ||
| − | < | + | <source lang="scar" lines="false"> |
| + | procedure Alert(const s: AnsiString); | ||
| + | </source> | ||
==Availability== | ==Availability== | ||
| Line 8: | Line 10: | ||
Shows an alert similar to those of Windows Live Messenger, containing the given [[AnsiString|string]] '''s'''. | Shows an alert similar to those of Windows Live Messenger, containing the given [[AnsiString|string]] '''s'''. | ||
| − | ==Example | + | ==Example== |
<source lang="scar"> | <source lang="scar"> | ||
begin | begin | ||
| Line 18: | Line 20: | ||
*[[WriteLn]] | *[[WriteLn]] | ||
*[[Status]] | *[[Status]] | ||
| + | *[[AddToReport]] | ||
[[Category:Functions]] | [[Category:Functions]] | ||
[[Category:GUI Functions]] | [[Category:GUI Functions]] | ||
Latest revision as of 20:28, 27 June 2011
Definition
procedure Alert(const s: AnsiString);
Availability
SCAR Divi 3.20 > Current
Description
Shows an alert similar to those of Windows Live Messenger, containing the given string s.
Example
begin
Alert('Hello world!');
end.