captureMLSD.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: 16036: captureMLSD.dpr
  11. {
  12. { Rev 1.0 2/13/2003 03:04:06 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:23:06 PM JPMugaas
  18. { Initial check in. Import from FTP VC.
  19. }
  20. program captureMLSD;
  21. uses
  22. Forms,
  23. capturemainMLSD in 'capturemainMLSD.pas' {frmCapture};
  24. {$R *.res}
  25. begin
  26. Application.Initialize;
  27. Application.CreateForm(TfrmCapture, frmCapture);
  28. Application.Run;
  29. end.