D7myYunxiang/云翔生产管理(MYSC.dll)/MYSC.dpr

78 lines
2.9 KiB
ObjectPascal
Raw Normal View History

2025-01-20 13:04:03 +08:00
library MYSC;
uses
SysUtils,
classes,
forms,
WinTypes,
WinProcs,
U_GetDllForm in 'U_GetDllForm.pas',
U_ModuleNote in 'U_ModuleNote.pas' {frmModuleNote},
U_DataLink in 'U_DataLink.pas' {DataLink_MYSC: TDataModule},
U_ZDYHelpSel in 'U_ZDYHelpSel.pas' {frmZDYHelpSel},
U_iniParam in 'U_iniParam.pas',
U_ZDYCPName in 'U_ZDYCPName.pas' {frmZDYCPName},
U_QCRKJLList in 'U_QCRKJLList.pas' {frmQCRKJLList},
U_KHSelList in 'U_KHSelList.pas' {frmKHSelList},
U_SCPerson in 'U_SCPerson.pas' {frmSCPerson},
U_purview in 'U_purview.pas' {frmpurviewDL},
U_ZHCPViewList in 'U_ZHCPViewList.pas' {frmZHCPViewList},
U_RSColorBig in 'U_RSColorBig.pas' {frmRSColorBig},
U_User in 'U_User.pas' {frmUser},
U_ZHCPBigMP in 'U_ZHCPBigMP.pas' {frmZHCPBigMP},
U_KuWeiKCList in 'U_KuWeiKCList.pas' {frmKuWeiKCList},
U_KuWeiInPutCeng in 'U_KuWeiInPutCeng.pas' {frmKuWeiInPutCeng},
U_ZHDJInPut in 'U_ZHDJInPut.pas' {frmZHDJInPut},
U_ZHCPDJList in 'U_ZHCPDJList.pas' {frmZHCPDJList},
U_InfoBtn in 'U_InfoBtn.pas' {frmInfoBtn},
U_PBListSel in 'U_PBListSel.pas' {frmPBListSel},
U_XiaoShouDataNewListQB in 'U_XiaoShouDataNewListQB.pas' {frmXiaoShouDataNewListQB},
U_XiShouInPutWKC in 'U_XiShouInPutWKC.pas' {frmXiShouInPutWKC},
U_KHListSelJJ in 'U_KHListSelJJ.pas' {frmKHListSelJJ},
U_FjList in 'U_FjList.pas' {frmFjList},
U_Fun in '..\..\..\ThreeFun\Fun\U_Fun.pas',
U_SelExportField in '..\..\..\ThreeFun\Form\U_SelExportField.pas' {frmSelExportField},
U_CompressionFun in '..\..\..\ThreeFun\Fun\U_CompressionFun.pas',
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_Fun10 in '..\..\..\ThreeFun\Fun\U_Fun10.pas',
U_SLT in 'U_SLT.pas' {frmSLT: TFrame},
U_MLMange_ADDCX in 'U_MLMange_ADDCX.pas' {frmMLMange_ADDCX},
U_BPZdy_YT in 'U_BPZdy_YT.pas' {FrmBPZdy_YT},
U_ContractList_CX in 'U_ContractList_CX.pas' {frmContractList_CX},
U_MCGRKList_PTCL in 'U_MCGRKList_PTCL.pas' {frmMCGRKList_PTCL},
U_LLRKInPutMH_PMCGCE in 'U_LLRKInPutMH_PMCGCE.pas' {frmLLRKInPutMH_PMCGCE},
U_RTFun in '..\..\..\RTFunAndForm\Fun\U_RTFun.pas',
U_ZSDSelist in 'U_ZSDSelist.pas' {frmZSDSelist},
U_PBKCList in 'U_PBKCList.pas' {frmPBKCList},
U_JGCKListSel in 'U_JGCKListSel.pas' {frmJJGCKListSel},
2025-07-05 15:14:36 +08:00
U_LLCKInPut in 'U_LLCKInPut.pas' {frmLLCKInPut},
U_LLCKList in 'U_LLCKList.pas' {frmLLCKList},
2025-01-20 13:04:03 +08:00
U_MLSCDXZ in 'U_MLSCDXZ.pas' {frmmlscdxz},
U_ZSDXZ in 'U_ZSDXZ.pas' {frmzsdxz};
{$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.