69 lines
2.4 KiB
ObjectPascal
69 lines
2.4 KiB
ObjectPascal
library BIView;
|
|
|
|
uses
|
|
SysUtils,
|
|
classes,
|
|
forms,
|
|
WinTypes,
|
|
WinProcs,
|
|
U_GetDllForm in 'U_GetDllForm.pas',
|
|
U_RTFun in '..\..\..\RTFunAndForm\Fun\U_RTFun.pas',
|
|
U_ModuleNote in 'U_ModuleNote.pas' {frmModuleNote},
|
|
U_DataLink in 'U_DataLink.pas' {DataLink_BIView: TDataModule},
|
|
U_ZDYHelpSel in 'U_ZDYHelpSel.pas' {frmZDYHelpSel},
|
|
U_iniParam in 'U_iniParam.pas',
|
|
U_ZDYHelp in 'U_ZDYHelp.pas' {frmZDYHelp},
|
|
U_Fun in '..\..\..\ThreeFun\Fun\U_Fun.pas',
|
|
U_SelExportField in '..\..\..\ThreeFun\Fun\U_SelExportField.pas' {frmSelExportField},
|
|
U_ColumnSet in '..\..\..\ThreeFun\Form\U_ColumnSet.pas' {frmColumnSet},
|
|
U_ColumnBandSet in '..\..\..\ThreeFun\Form\U_ColumnBandSet.pas' {frmColumnBandSet},
|
|
U_SelPrintFieldNew in '..\..\..\ThreeFun\Form\U_SelPrintFieldNew.pas' {frmSelPrintFieldNew},
|
|
U_SysLogHelp in '..\..\..\ThreeFun\Form\U_SysLogHelp.pas' {frmSysLogHelp},
|
|
U_DDDJJHMXGang in 'U_DDDJJHMXGang.pas' {frmDDDJJHMXGang},
|
|
U_JYFTopMX in 'U_JYFTopMX.pas' {frmJYFTopMX},
|
|
U_DCCarMX_Worker in 'U_DCCarMX_Worker.pas' {frmDCCarMX_Worker},
|
|
U_BIHZList in 'U_BIHZList.pas' {frmBIHZList},
|
|
U_PBNameDayQtyList in 'U_PBNameDayQtyList.pas' {frmPBNameDayQtyList},
|
|
U_OrderHSInPutTS in 'U_OrderHSInPutTS.pas' {frmOrderHSInPutTS},
|
|
U_OrderHSList in 'U_OrderHSList.pas' {frmOrderHSList},
|
|
U_ContractListSel in 'U_ContractListSel.pas' {frmContractListSel},
|
|
U_FjList in 'U_FjList.pas' {frmFjList},
|
|
U_DeptType in 'U_DeptType.pas' {frmDeptType},
|
|
U_BXListChk in 'U_BXListChk.pas' {frmBXListChk},
|
|
U_DCTimeZhou in 'U_DCTimeZhou.pas' {frmDCTimeZhou},
|
|
U_purview in 'U_purview.pas' {frmpurviewDL},
|
|
U_User in 'U_User.pas' {frmUser};
|
|
|
|
// U_SelfForm in '..\..\SelfForm\U_SelfForm.pas',
|
|
// U_SelExportField in '..\..\SelfForm\U_SelExportField.pas' {frmSelExportField},
|
|
// U_SelPrintField in '..\..\SelfForm\U_SelPrintField.pas' {frmSelPrintField},
|
|
// U_SelPrintFieldNew in '..\..\SelfForm\U_SelPrintFieldNew.pas' {frmSelPrintFieldNew},
|
|
//U_FormPas in '..\CommonPas\formPas\U_FormPas.pas',
|
|
//U_CxGridSet in '..\CommonPas\cxgridPas\U_CxGridSet.pas';
|
|
|
|
//U_RSFormPas in '..\CommonPas\RSCommon\U_RSFormPas.pas';
|
|
|
|
{$R *.res}
|
|
|
|
procedure DllEnterPoint(dwReason: DWORD);far;stdcall;
|
|
begin
|
|
DLLProc := @DLLEnterPoint;
|
|
DllEnterPoint(DLL_PROCESS_ATTACH);
|
|
end;
|
|
|
|
procedure DLLUnloadProc(Reason: Integer); register;
|
|
begin
|
|
|
|
end;
|
|
exports
|
|
GetDllForm;
|
|
begin
|
|
try
|
|
NewDllApp:=Application;
|
|
DLLProc := @DLLUnloadProc;
|
|
except
|
|
|
|
end;
|
|
end.
|
|
|