source: OniWindowMover/OniWindowMover.dpr

Last change on this file was 257, checked in by alloc, 15 years ago
File size: 311 bytes
Line 
1program OniWindowMover;
2
3uses
4  Forms,
5  Unit1 in 'Unit1.pas' {Form1},
6  Unit2 in 'Unit2.pas' {Form2};
7
8{$R *.res}
9
10begin
11  Application.Initialize;
12  Application.Title := 'OniWindowMover';
13  Application.CreateForm(TForm1, Form1);
14  Application.CreateForm(TForm2, Form2);
15  Application.Run;
16end.
Note: See TracBrowser for help on using the repository browser.