initial commit
[rofl0r-KOL.git] / demos / 2forms / Demo2Forms.dpr
blob769b4a5396348d0027b57c3c0f1cc75e241c433e
1 { KOL MCK } // Do not remove this line!\r
2 program Demo2Forms;\r
3 \r
4 uses\r
5 KOL,\r
6   Unit1 in 'Unit1.pas' {Form1},\r
7   Unit2 in 'Unit2.pas' {Form2};\r
8 \r
9 //{$R *.res}\r
11 begin // PROGRAM START HERE -- Please do not remove this comment\r
13 {$IFDEF KOL_MCK} {$I Demo2Forms_0.inc} {$ELSE}\r
15   Application.Initialize;\r
16   Application.CreateForm(TForm1, Form1);\r
17   Application.CreateForm(TForm2, Form2);\r
18   Application.Run;\r
20 {$ENDIF}\r
22 end.\r