home *** CD-ROM | disk | FTP | other *** search
/ PC Plus SuperCD (UK) 2000 March / pcp161b.iso / handson / archive / Issue158 / delphi / RichEditTest / StrUtilsTest.dpr < prev   
Encoding:
Text File  |  1999-08-09  |  227 b   |  15 lines

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