DLLs used in FE

Pat
5StarLounger
Posts: 1148
Joined: 08 Feb 2010, 21:27

DLLs used in FE

Post by Pat »

Do the referenced DLLs need to be on the PCs where all FEs reside?

Or do the DLLs need to be only on the PC where the development is done, ie where the compile is done?

User avatar
HansV
Administrator
Posts: 78523
Joined: 16 Jan 2010, 00:14
Status: Microsoft MVP
Location: Wageningen, The Netherlands

Re: DLLs used in FE

Post by HansV »

If you set references in Tools | References... or if you declare Windows API functions at the top of a module, the referenced .dll (or .ocx) files need to be installed and registered on each PC on which the frontend is run.
Best wishes,
Hans

Pat
5StarLounger
Posts: 1148
Joined: 08 Feb 2010, 21:27

Re: DLLs used in FE

Post by Pat »

Does the same apply when the FE is compiled and made into an MDE?

User avatar
HansV
Administrator
Posts: 78523
Joined: 16 Jan 2010, 00:14
Status: Microsoft MVP
Location: Wageningen, The Netherlands

Re: DLLs used in FE

Post by HansV »

Yes - externally referenced DLLs are *not* included in an .mde, so they need to be present on the PC from which the .mde is run.
Best wishes,
Hans

Pat
5StarLounger
Posts: 1148
Joined: 08 Feb 2010, 21:27

Re: DLLs used in FE

Post by Pat »

Thank you Hans