boxMLSD.dpr 1.0 KB

1234567891011121314151617181920212223242526272829303132
  1. { $HDR$}
  2. {**********************************************************************}
  3. { Unit archived using Team Coherence }
  4. { Team Coherence is Copyright 2002 by Quality Software Components }
  5. { }
  6. { For further information / comments, visit our WEB site at }
  7. { http://www.TeamCoherence.com }
  8. {**********************************************************************}
  9. {}
  10. { $Log: 16034: boxMLSD.dpr
  11. {
  12. { Rev 1.0 2/13/2003 03:04:02 PM JPMugaas
  13. { Box tests and capture program for MLSD output. We handle that separately
  14. { from regular LIST data.
  15. }
  16. {
  17. { Rev 1.0 11/12/2002 09:22:40 PM JPMugaas
  18. { Initial check in. Import from FTP VC.
  19. }
  20. program boxMLSD;
  21. uses
  22. Forms,
  23. ftplistmainMLSD in 'ftplistmainMLSD.pas' {Form1};
  24. {$R *.res}
  25. begin
  26. Application.Initialize;
  27. Application.CreateForm(TForm1, Form1);
  28. Application.Run;
  29. end.