capture.dpr 873 B

123456789101112131415161718192021222324252627
  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: 11293: capture.dpr
  11. {
  12. { Rev 1.0 11/12/2002 09:23:06 PM JPMugaas
  13. { Initial check in. Import from FTP VC.
  14. }
  15. program capture;
  16. uses
  17. Forms,
  18. capturemain in 'capturemain.pas' {frmCapture};
  19. {$R *.res}
  20. begin
  21. Application.Initialize;
  22. Application.CreateForm(TfrmCapture, frmCapture);
  23. Application.Run;
  24. end.