home *** CD-ROM | disk | FTP | other *** search
/ PC Plus SuperCD (UK) 2000 March / pcp161b.iso / handson / archive / Issue158 / delphi / LinesShowing / LinesShowing.dpr next >
Encoding:
Text File  |  1999-08-13  |  272 b   |  16 lines

  1. program LinesShowing;
  2.  
  3. uses
  4.   Forms,
  5.   linesunit in 'linesunit.pas' {Form1},
  6.   RichEditUtils in 'RichEditUtils.pas',
  7.   Strutils in 'Strutils.pas';
  8.  
  9. {$R *.RES}
  10.  
  11. begin
  12.   Application.Initialize;
  13.   Application.CreateForm(TForm1, Form1);
  14.   Application.Run;
  15. end.
  16.