Changeset 10 for trunk/chronis.lpr
- Timestamp:
- Jun 9, 2011, 9:33:21 AM (13 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk
- Property svn:ignore
-
old new 3 3 chronis 4 4 heaptrclog.trc 5 chronis.exe
-
- Property svn:ignore
-
trunk/chronis.lpr
r9 r10 9 9 Interfaces, // this includes the LCL widgetset 10 10 Forms, UPersistentForm, URegistry, USqlDatabase, UTreeState, SysUtils, 11 UItemView, UItemEdit, ULoginForm, UMainForm, UItemAdd, TemplateGenerics, USystem 11 UItemView, UItemEdit, ULoginForm, UMainForm, UItemAdd, TemplateGenerics, 12 USystem, UCore, UApplicationInfo, USettingForm 12 13 { you can add units after this }; 13 14 14 15 {$R *.res} 15 16 17 {$IFDEF DEBUG} 16 18 const 17 19 HeapTraceLog = 'heaptrclog.trc'; 20 {$ENDIF} 21 18 22 begin 23 {$IFDEF DEBUG} 19 24 // Heap trace 20 25 DeleteFile(ExtractFilePath(ParamStr(0)) + HeapTraceLog); 21 26 SetHeapTraceOutput(ExtractFilePath(ParamStr(0)) + HeapTraceLog); 27 {$ENDIF} 28 22 29 Application.Initialize; 30 Application.CreateForm(TCore, Core); 23 31 Application.CreateForm(TMainForm, MainForm); 32 Application.CreateForm(TLoginForm, LoginForm); 24 33 Application.CreateForm(TItemViewForm, ItemViewForm); 25 34 Application.CreateForm(TItemEditForm, ItemEditForm); 26 35 Application.CreateForm(TItemAddForm, ItemAddForm); 36 Application.CreateForm(TSettingForm, SettingForm); 27 37 Application.Run; 28 38 end.
Note:
See TracChangeset
for help on using the changeset viewer.