source: tags/1.4.0/vCardStudio.lpr

Last change on this file was 138, checked in by chronos, 21 months ago
  • Added: Allow to configure visible columns in contacts table.
File size: 726 bytes
Line 
1program vCardStudio;
2
3uses
4 {$IFDEF UNIX}
5 cthreads, clocale,
6 {$ENDIF}
7 Interfaces, // this includes the LCL widgetset
8 Forms, UFormMain, UCore, Diff, SysUtils, UFormCompare, UTestCases,
9 UVCardFile, UFormColumns;
10
11{$R *.res}
12
13{$if declared(UseHeapTrace)}
14const
15 HeapTraceLog = 'heaptrclog.trc';
16{$ENDIF}
17
18begin
19 Application.Scaled:=True;
20 Application.Title:='vCard Studio';
21 {$if declared(UseHeapTrace)}
22 DeleteFile(ExtractFilePath(ParamStr(0)) + HeapTraceLog);
23 SetHeapTraceOutput(ExtractFilePath(ParamStr(0)) + HeapTraceLog);
24 {$ENDIF}
25 RequireDerivedFormResource:=True;
26 Application.Initialize;
27 Application.CreateForm(TFormMain, FormMain);
28 Application.CreateForm(TCore, Core);
29 Application.Run;
30end.
31
Note: See TracBrowser for help on using the repository browser.