home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Crawly Crypt Collection 2
/
crawlyvol2.bin
/
program
/
pascal
/
pdial
/
demos
/
alrtdemo.pas
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Windows-1254 (detected)
Wrap
Pascal/Delphi Source File
|
1993-07-08
|
313 b
|
17 lines
program alert_demo;
uses geminit, newobs, pform, alert;
begin
if initgem then
begin
init_pform(vdihandle, FALSE);
init_newobs(vdihandle);
do_alert(@GEM2Note, 'Dies ist eine Alertbox ' +
'allererster Kajüte!', ' [OK ', 0, -1);
exit_pform;
exitgem;
end
end.