The information in this article applies to:
SUMMARYIt is often necessary to download dependent DLLs along with an ActiveX Control. MFC and Visual Basic controls have this requirement. This article will explain three ways that you can do this. MORE INFORMATION
There are three ways to include dependent DLLs in the download for a
control. The first way is to include the DLL(s) in the CAB file for the
control along with the OCX and INF files. The downside of this is that the
DLL will be downloaded any time the control is downloaded. In some cases,
this is appropriate. The next way is to package the dependent DLL(s) in a
separate CAB file and refer to that in the INF file for the control. The
third way also packages the DLL in a separate CAB file but the CAB file is
referred to in the control[ASCII 146]s INF file with a hook. Using a hook allows the
download process to execute an INF or EXE file contained in the dependent
CAB file.
A section is then added to the INF file to control the installation of the
DLL:
This is the first way mentioned to include a DLL dependency in a download.
To include the DLL in a separate CAB file, all that is necessary is to change the location from "thiscab" to the URL at which the dependent CAB will be located: file-win32-x86=http://example.microsoft.com/simpdll.cabIn this case, Simpdll.cab contains only simpdll.dll. Multiple DLLs can be added to the INF and CAB files above if necessary. The third way to package dependent DLLs is to refer to the dependent DLL[ASCII 146]s CAB file using a hook. With this technique, an INF or EXE file in the dependent CAB can be executed on download. The following section from an .inf file controls the dependent DLL download for MFC controls:
In this case, the MFC DLLs are packaged in a self-extracting .exe file,
which is contained in the .cab file (mfc42.cab). However, tools to make
self-extracting .exe files are not currently available from Microsoft.
Therefore, you will either need to package dependent DLLs with an .inf file
or reference the .inf file in the installation hook:
Or, you will need to build a self extracting EXE file using third party
tools.
To illustrate, the following is the .inf file used to install the dependent MFC DLLs. You can modify this to install your own DLLs in the same way that the MFC DLLs are installed.
A DLL needs to be listed in the .register section if it exports a
DllRegisterServer function. This can be determined by examining the DLL
with the Visual C compiler's Dumpbin.exe utility. You can also run
Regsvr32 on the DLL, which attempts to register the DLL. Regsvr32 loads
the DLL, verifies that DllRegisterServer is properly exported by calling
GetProcAddress() on the DLLRegisterServer function. If it succeeds, the
function DllRegisterServer is exported and is then called.
Beware, however, that running Regsvr32 on the DLL may have undesirable side effects. When DllRegisterServer is called, it makes appropriate registry entries pointing to the DLL location on the machine. For example, typing the following in an MS-DOS prompt, for test purposes, can cause problems:
The next time the system tries to look for Mfc42.dll, it looks up the
registry, finds that the file is mapped to C:\Test\Mfc42.dll, and doesn't
find it there. Running Regsvr32 on a file that is already installed on a
machine does not cause problems.
Installing a DLL with a hook and a self extracting EXE is useful for the following reason: If a DLL that needs to be upgraded is already loaded in memory, the download will fail. This is a known problem, which has been fixed in Internet Explorer version 4.0. Internet Explorer 4.0 will suggest a reboot and load the new DLL during the reboot. REFERENCESFor additional information, please see the following articles in the Microsoft Knowledge Base: Q167158 How To Package MFC Controls for Use Over the Internet Q167597 Specifying FileVersion and #Version for Component Download © Microsoft Corporation 1997, All Rights Reserved. Additional query words:
Keywords : kbCodeDownload kbIE500 InetSDKCAB AXSDKCompDownload kbIEFAQ |
Last Reviewed: January 27, 2000 © 2000 Microsoft Corporation. All rights reserved. Terms of Use. |