Article ID: 151771 - Last Review: April 10, 2006 - Revision: 6.0 The Licreqst.exe sample demonstrates how to request the License key of an object in Visual C++This article was previously published under Q151771 On This PageSUMMARY The LicReqst sample illustrates how to use the
IClassFactory2 interface to request an object's License key.
The following file is available for download from the Microsoft Download Center: Collapse this image ![]() For more information about how to download Microsoft support files, click the following article number to view the article in the Microsoft Knowledge Base: 119591
(http://support.microsoft.com/kb/119591/
)
How to obtain Microsoft support files from online services
Microsoft scanned this file for viruses. Microsoft used the most current virus-detection software that was available on the date that the file was posted. The file is stored on security-enhanced servers that help prevent any unauthorized changes to the file.
Note Use the -d option when running Licrqst.exe to
decompress the file and recreate the proper directory structure. MORE INFORMATION The LicReqst sample is a dialog-based MFC application that
illustrates how to use the IClassFactory2 interface to request an object's
License key. LicReqst displays the ProgID of each of the currently registered
ActiveX controls in a list box. When one of the displayed ProgID's is selected,
an instance of the corresponding control is created and then asked for it's
License key. If a valid key is returned, LicReqst displays the key and enables
the Copy to Clipboard button that allows the License key to be copied to the
Clipboard. The License key can then easily be pasted into code that uses the
CWnd::CreateControl method to dynamically create an instance of the control.
LicReqst creates a textual version of the License key data in the form of a declaration of an array of WCHAR when copying the key to the Clipboard. This is done because the License key data could contain non-printable characters. A human-readable version of the License key data is also provided for reference and is included inside a Comment block in the final string that is copied to the Clipboard. For example, if an object uses the string Copyright (c) 1994 for its License key, LicReqst would generate the following block of text that could be copied to and pasted from the Clipboard: For example, if MFC code is dynamically creating an instance of a licensed ActiveX control using the Create method of a Visual C++ Component Gallery generated wrapper class, the pwchLicenseKey variable can be used in the Create method call like this: Note The code in this sample that generates the text copied to the Clipboard makes the assumption that it is being executed on a little endian system (Intel x86-class processors). Because of this, it will not work correctly on big endian system. For these systems, it is still possible to use the Helper function used internally by the sample to request the License key from an object. The sample uses a Helper function called RequestLicenseKey to get the License key from an object based on its ProgID. The source code for the RequestLicenseKey function is shown later in the "Sample code" section. To find other locations of interest in the sample source code, use the Find in Files feature of the Visual C++ Developer Studio to search for the string named SAMPLE CODE. This string has been used to tag each of the modified sections in the source code. Note Running the LicReqst sample on a licensed machine to obtain an object's License key, and then distributing that key to allow applications to be developed on other non-licensed machines, may be a violation of established copyrights. For more information, and to determine if an object's License key can be legally redistributed, refer to the License Agreement provided with the object or contact the creator of the object. Sample codeREFERENCES For more information, please see:
OLE Programmer's Reference; search on IClassFactory2 interface;
CWnd::CreateControl method.
APPLIES TO
| Article Translations
|

Back to the top
