Subversion Repositories winbugtracker

Rev

Go to most recent revision | Blame | Last modification | View Log | RSS feed

  1. program WuLi;
  2.  
  3. uses
  4.   Forms,
  5.   WuLiMain in 'WuLiMain.pas' {Form1},
  6.   Mitarbeiter in 'Mitarbeiter.pas' {frmMitarbeiter},
  7.   Versionen in 'Versionen.pas' {frmVersionen},
  8.   Module in 'Module.pas' {frmModule},
  9.   Projekte in 'Projekte.pas' {frmProdukte};
  10.  
  11. {$R *.res}
  12.  
  13. begin
  14.   Application.Initialize;
  15.   Application.CreateForm(TForm1, Form1);
  16.   Application.CreateForm(TfrmMitarbeiter, frmMitarbeiter);
  17.   Application.CreateForm(TfrmVersionen, frmVersionen);
  18.   Application.CreateForm(TfrmModule, frmModule);
  19.   Application.CreateForm(TfrmProdukte, frmProdukte);
  20.   Application.Run;
  21. end.
  22.