source:
DockManagement/Demo/DockManagementDemo.dpr
Last change on this file was 5, checked in by , 13 years ago | |
---|---|
File size: 261 bytes |
Line | |
---|---|
1 | program DockManagementDemo; |
2 | |
3 | uses |
4 | Vcl.Forms, |
5 | UMainForm in 'UMainForm.pas' {MainForm}; |
6 | |
7 | {$R *.res} |
8 | |
9 | begin |
10 | Application.Initialize; |
11 | Application.MainFormOnTaskbar := True; |
12 | Application.CreateForm(TMainForm, MainForm); |
13 | Application.Run; |
14 | end. |
Note:
See TracBrowser
for help on using the repository browser.