21 lines
629 B
ObjectPascal
21 lines
629 B
ObjectPascal
program DynWhere_Client;
|
|
|
|
uses
|
|
uROComInit,
|
|
Forms,
|
|
MidasLib,
|
|
DynWhere_ClientMain in 'DynWhere_ClientMain.pas' {DynWhere_ClientForm},
|
|
DynWhere_ClientData in 'DynWhere_ClientData.pas' {DynWhere_ClientDataForm: TDAClientDataModule},
|
|
memoForm in 'memoForm.pas' {frmMemo},
|
|
WhereExpression in 'WhereExpression.pas' {WhereExpressionForm};
|
|
|
|
{$R *.res}
|
|
|
|
begin
|
|
Application.Initialize;
|
|
Application.Title := 'Dynamic Where - Client';
|
|
Application.CreateForm(TDynWhere_ClientDataForm, DynWhere_ClientDataForm);
|
|
Application.CreateForm(TDynWhere_ClientForm, DynWhere_ClientForm);
|
|
Application.Run;
|
|
end.
|