source: studio/trunk/LDStudio.dpr

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