EurekaLog.dpr

<< Click to Display Table of Contents >>

Navigation:  Demos > X > EurekaLog >

EurekaLog.dpr

program EurekaLog;

 

//IMPORTANT:

// Please see the readme.txt document

 

{%File 'readme.txt'}

 

uses

 ExceptionLog,

 Forms,

 IWMain,

 ServerController in 'ServerController.pas' {IWServerController: TIWServerController},

 MainForm in 'MainForm.pas' {formMain: TIWFormModuleBase};

 

{$R *.res}

 

begin

 Application.Initialize;

 Application.CreateForm(TformIWMain, formIWMain);

 Application.Run;

end.