42 lines
1.2 KiB
ObjectPascal
42 lines
1.2 KiB
ObjectPascal
|
|
program IntraWeb;
|
||
|
|
{PUBDIST}
|
||
|
|
|
||
|
|
uses
|
||
|
|
Forms,
|
||
|
|
IWMain,
|
||
|
|
ServerController in 'ServerController.pas' {IWServerController: TIWServerControllerBase},
|
||
|
|
uBase in 'uBase.pas' {fmBase: TIWAppForm},
|
||
|
|
uMain in 'uMain.pas' {fmMain: TIWAppForm},
|
||
|
|
uMasterDetail in 'uMasterDetail.pas' {fmMasterDetail: TIWAppForm},
|
||
|
|
uCachedUpdates in 'uCachedUpdates.pas' {fmCachedUpdates: TIWAppForm},
|
||
|
|
uData in 'uData.pas' {DM: TDataModule},
|
||
|
|
uQuery in 'uQuery.pas' {fmQuery: TIWAppForm};
|
||
|
|
|
||
|
|
{$R *.res}
|
||
|
|
|
||
|
|
begin
|
||
|
|
Application.Initialize;
|
||
|
|
Application.CreateForm(TformIWMain, formIWMain);
|
||
|
|
Application.Run;
|
||
|
|
end.
|
||
|
|
{PUBDIST}
|
||
|
|
|
||
|
|
uses
|
||
|
|
Forms,
|
||
|
|
IWMain,
|
||
|
|
ServerController in 'ServerController.pas' {IWServerController: TIWServerControllerBase},
|
||
|
|
uBase in 'uBase.pas' {fmBase: TIWAppForm},
|
||
|
|
uMain in 'uMain.pas' {fmMain: TIWAppForm},
|
||
|
|
uMasterDetail in 'uMasterDetail.pas' {fmMasterDetail: TIWAppForm},
|
||
|
|
uCachedUpdates in 'uCachedUpdates.pas' {fmCachedUpdates: TIWAppForm},
|
||
|
|
uData in 'uData.pas' {DM: TDataModule},
|
||
|
|
uQuery in 'uQuery.pas' {fmQuery: TIWAppForm};
|
||
|
|
|
||
|
|
{$R *.res}
|
||
|
|
|
||
|
|
begin
|
||
|
|
Application.Initialize;
|
||
|
|
Application.CreateForm(TformIWMain, formIWMain);
|
||
|
|
Application.Run;
|
||
|
|
end.
|