Difference between revisions of "Alert"

From SCAR Divi Manual
Jump to: navigation, search
(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...")
 
(Example 1)
Line 8: Line 8:
 
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 1==
+
==Example==
 
<source lang="scar">
 
<source lang="scar">
 
begin
 
begin

Revision as of 01:48, 26 June 2011

Definition

<func>procedure Alert(const s: AnsiString);</func>

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.

See Also