1 2 3 4 5 6 7 8 9 10 11 12 13
program testproj; uses Forms, test1 in 'test1.pas' {Form1}; {$R *.RES} begin Application.Initialize; Application.CreateForm(TForm1, Form1); Application.Run; end.