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