Subversion Repositories winbugtracker

Rev

Rev 2 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 2 Rev 3
Line 1... Line 1...
1
program WuLi;
1
program WuLi;
2
 
2
 
3
uses
3
uses
4
  Forms,
4
  Forms,
5
  WuLiMain in 'WuLiMain.pas' {Form1},
5
  WuLiMain in 'WuLiMain.pas' {frmBugtracker},
6
  Mitarbeiter in 'Mitarbeiter.pas' {frmMitarbeiter},
6
  Mitarbeiter in 'Mitarbeiter.pas' {frmMitarbeiter},
7
  Versionen in 'Versionen.pas' {frmVersionen},
7
  Versionen in 'Versionen.pas' {frmVersionen},
8
  Module in 'Module.pas' {frmModule},
8
  Module in 'Module.pas' {frmModule},
9
  Projekte in 'Projekte.pas' {frmProdukte};
9
  Projekte in 'Projekte.pas' {frmProjekte},
-
 
10
  Login in 'Login.pas' {frmLogin},
-
 
11
  ABOUT in 'About.pas' {AboutBox};
10
 
12
 
11
{$R *.res}
13
{$R *.res}
12
 
14
 
13
begin
15
begin
14
  Application.Initialize;
16
  Application.Initialize;
15
  Application.CreateForm(TForm1, Form1);
17
  Application.CreateForm(TfrmBugtracker, frmBugtracker);
16
  Application.CreateForm(TfrmMitarbeiter, frmMitarbeiter);
18
  Application.CreateForm(TfrmMitarbeiter, frmMitarbeiter);
17
  Application.CreateForm(TfrmVersionen, frmVersionen);
19
  Application.CreateForm(TfrmVersionen, frmVersionen);
18
  Application.CreateForm(TfrmModule, frmModule);
20
  Application.CreateForm(TfrmModule, frmModule);
19
  Application.CreateForm(TfrmProdukte, frmProdukte);
21
  Application.CreateForm(TfrmProjekte, frmProjekte);
-
 
22
  Application.CreateForm(TfrmLogin, frmLogin);
-
 
23
  Application.CreateForm(TAboutBox, AboutBox);
20
  Application.Run;
24
  Application.Run;
21
end.
25
end.