home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Stars of Shareware: Programmierung
/
SOURCE.mdf
/
programm
/
msdos
/
pascal
/
totdem11
/
demms1.pas
< prev
next >
Wrap
Pascal/Delphi Source File
|
1991-02-11
|
494b
|
26 lines
program DemoMessageOne;
{demms1 - simple message}
Uses DOS, CRT,
totFAST, totMSG;
Var
MsgWin : MessageOBJ;
begin
Screen.Clear(white,'░'); {paint the screen}
with MsgWin do
begin
Init(1,' Message ');
AddLine('');
AddLine('The message unit provides a');
AddLine('very easy way of displaying');
AddLine('pop-up messages in a move-');
AddLine('able window.');
AddLine('');
Show;
Done;
end;
end.