source: tags/1.2.0/vCardStudio.lpr

Last change on this file was 39, checked in by chronos, 2 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 
1program vCardStudio;
2
3{$mode objfpc}{$H+}
4
5uses
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)}
18const
19 HeapTraceLog = 'heaptrclog.trc';
20{$ENDIF}
21
22begin
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;
34end.
35
Note: See TracBrowser for help on using the repository browser.