|
Last change
on this file was 39, checked in by chronos, 4 years ago |
- Added: New more general contact properties list and item form.
- Modified: Show Private and Work addresses in separate tab.
|
|
File size:
856 bytes
|
| Line | |
|---|
| 1 | program vCardStudio;
|
|---|
| 2 |
|
|---|
| 3 | {$mode objfpc}{$H+}
|
|---|
| 4 |
|
|---|
| 5 | uses
|
|---|
| 6 | {$IFDEF UNIX}
|
|---|
| 7 | cthreads, clocale,
|
|---|
| 8 | {$ENDIF}
|
|---|
| 9 | Interfaces, // this includes the LCL widgetset
|
|---|
| 10 | Forms, UFormMain, UCore, Common, UDataFile, SysUtils, UFormContacts,
|
|---|
| 11 | UFormContact, UFormFindDuplicity, UFormGenerate, UFormError, UQuotedPrintable,
|
|---|
| 12 | UFormProperty
|
|---|
| 13 | { you can add units after this };
|
|---|
| 14 |
|
|---|
| 15 | {$R *.res}
|
|---|
| 16 |
|
|---|
| 17 | {$if declared(UseHeapTrace)}
|
|---|
| 18 | const
|
|---|
| 19 | HeapTraceLog = 'heaptrclog.trc';
|
|---|
| 20 | {$ENDIF}
|
|---|
| 21 |
|
|---|
| 22 | begin
|
|---|
| 23 | Application.Scaled:=True;
|
|---|
| 24 | Application.Title := 'vCard Studio';
|
|---|
| 25 | {$if declared(UseHeapTrace)}
|
|---|
| 26 | DeleteFile(ExtractFilePath(ParamStr(0)) + HeapTraceLog);
|
|---|
| 27 | SetHeapTraceOutput(ExtractFilePath(ParamStr(0)) + HeapTraceLog);
|
|---|
| 28 | {$ENDIF}
|
|---|
| 29 | RequireDerivedFormResource:=True;
|
|---|
| 30 | Application.Initialize;
|
|---|
| 31 | Application.CreateForm(TFormMain, FormMain);
|
|---|
| 32 | Application.CreateForm(TCore, Core);
|
|---|
| 33 | Application.Run;
|
|---|
| 34 | end.
|
|---|
| 35 |
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.