Notice: This website is an unofficial Microsoft Knowledge Base (hereinafter KB) archive and is intended to provide a reliable access to deleted content from Microsoft KB. All KB articles are owned by Microsoft Corporation. Read full disclaimer for more details.

How To Set Up Internet Download for Comdlg32.ocx


View products that this article applies to.

Summary

The CommonDialog control provides a standard set of dialog boxes for operations such as opening and saving files, setting print options, and selecting colors and fonts. This article documents how to set up the control for successful use in Internet Explorer.

The CommonDialog control is a licensed control that ships with Visual Basic (VB) 5.0. Only developers with a valid design-time license for the control may distribute the control for use in their applications or on their Web sites. The control and design-time license can be obtained by downloading the VB 5.0 Control Creation Edition (VBCCE), purchasing VB 5.0, or purchasing Visual InterDev.

In order to use the control in a Web page, a license package file (.lpk file) for the control must be created. This .lpk file is then referenced by the Web page. If there are multiple licensed controls on a page, a single .lpk file must be created for all of them.

↑ Back to the top


More information

This article covers generating the .lpk file and using it on a Web page.

Microsoft provides a signed .cab file, which can be referenced to install the CommonDialog control. If this .cab file is used, a Web page that uses the control would look similar to the following:
<HTML>
<HEAD>
<TITLE>Some Page</TITLE>
</HEAD>
<BODY>

<OBJECT CLASSID="clsid:5220cb21-c88d-11cf-b347-00aa00a28331">
    <PARAM NAME="LPKPath" VALUE="comdlg.lpk">
</OBJECT>

<OBJECT ID="CommonDialog1" WIDTH=32 HEIGHT=32
    CLASSID="CLSID:F9043C85-F6F2-101A-A3C9-08002B2F49FB"
    CODEBASE="http://activex.microsoft.com/controls/vb5/comdlg32.cab">
</OBJECT>

</BODY>
</HTML>
				
Note that Comdlg.lpk is a file that you generated and the name is arbitrary. Also, the location of the file is relative to the HTML file. Here the HTML and .lpk files are assumed to be in the same directory.

↑ Back to the top


References

For additional information about how to use licensed ActiveX Controls in Internet Explorer, please see the following article in the Microsoft Knowledge Base:
159923 How To Using Licensed ActiveX Controls in Internet Explorer

↑ Back to the top


Properties

Retired KB Content Disclaimer
This article was written about products for which Microsoft no longer offers support. Therefore, this article is offered "as is" and will no longer be updated.

↑ Back to the top


Keywords: KB168917, kbsetup, kbhowto

↑ Back to the top

Article Info
Article ID : 168917
Revision : 3
Created on : 7/13/2004
Published on : 7/13/2004
Exists online : False
Views : 547