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