home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2003 November
/
Chip_2003-11_cd1.bin
/
program
/
delphi
/
kompon
/
DIHtmlLabel.exe
/
Demos
/
DIHtmlLabel
/
DIHtmlLabel_Demo.dpr
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
2003-01-27
|
273 b
|
19 lines
program DIHtmlLabel_Demo;
uses
Forms,
Main in 'Main.pas' {frmMain},
Play in 'Play.pas' {frmPlay};
{$R *.RES}
begin
with Application do
begin
Title := 'TDIHtmlLabel Demo';
CreateForm(TfrmMain, frmMain);
Run;
end;
end.