Difference between revisions of "Alert"

From SCAR Divi Manual
Jump to: navigation, search
(Example 1)
Line 1: Line 1:
 
==Definition==
 
==Definition==
<func>procedure Alert(const s: AnsiString);</func>
+
<source lang="scar" lines="false">
 +
procedure Alert(const s: AnsiString);
 +
</source>
  
 
==Availability==
 
==Availability==

Revision as of 11:48, 26 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.

See Also