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