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:
Text File  |  2003-01-27  |  273 b   |  19 lines

  1. program DIHtmlLabel_Demo;
  2.  
  3. uses
  4.   Forms,
  5.   Main in 'Main.pas' {frmMain},
  6.   Play in 'Play.pas' {frmPlay};
  7.  
  8. {$R *.RES}
  9.  
  10. begin
  11.   with Application do
  12.     begin
  13.       Title := 'TDIHtmlLabel Demo';
  14.       CreateForm(TfrmMain, frmMain);
  15.       Run;
  16.     end;
  17. end.
  18.  
  19.