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