2
0

ClientBase.dpr 924 B

12345678910111213141516171819202122232425262728
  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: 22950: ClientBase.dpr
  11. {
  12. { Rev 1.0 09/10/2003 3:10:06 PM Jeremy Darling
  13. { Project Checked into TC for the first time
  14. }
  15. program ClientBase;
  16. uses
  17. Forms,
  18. MainForm in 'Forms\MainForm.pas' {frmMain},
  19. ClientThread in 'Units\ClientThread.pas';
  20. {$R *.RES}
  21. begin
  22. Application.Initialize;
  23. Application.CreateForm(TfrmMain, frmMain);
  24. Application.Run;
  25. end.