|
Last change
on this file was 138, checked in by chronos, 3 years ago |
- Added: Allow to configure visible columns in contacts table.
|
|
File size:
726 bytes
|
| Line | |
|---|
| 1 | program vCardStudio;
|
|---|
| 2 |
|
|---|
| 3 | uses
|
|---|
| 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)}
|
|---|
| 14 | const
|
|---|
| 15 | HeapTraceLog = 'heaptrclog.trc';
|
|---|
| 16 | {$ENDIF}
|
|---|
| 17 |
|
|---|
| 18 | begin
|
|---|
| 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;
|
|---|
| 30 | end.
|
|---|
| 31 |
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.