Microsoft KB Archive/326652

From BetaArchive Wiki

Article ID: 326652

Article Last Modified on 12/11/2006



APPLIES TO

  • Microsoft Visual C# 2005 Express Edition
  • Microsoft Visual C# .NET 2002 Standard Edition



This article was previously published under Q326652

For a Microsoft Visual Basic .NET version of this article, see 326651.

SUMMARY

This step-by-step article describes how to manually add a run-time license to an ActiveX control that is dynamically created in Visual C# .NET or in Visual C# 2005. In Visual Basic version 6, you can manually add licenses to the license collection by using the Licenses.Add() method. For more information about what License.Add() does in Visual Basic 6, see the "References" section of this article.

In Visual C# .NET or in Visual C# 2005, the licenses collection no longer exists. You must embed the license information in the control.

This article assumes that the control that requires the run-time license is in MyProject.OCX and is named MyLicensedControl. MyProject.OCX is located in C:\Windows\System32.

Create a new Visual C# .NET or Visual C# 2005 project

  1. Click Start, point to All Programs, point to Microsoft Visual Studio .NET, and then click Microsoft Visual Studio .NET.


Note In Visual Studio 2005, Microsoft Visual Studio .NET is changed to Microsoft Visual Studio 2005.

  1. On the File menu, point to New, and then click Project.
  2. In the New Project dialog box, click Visual C# Projects under Project Types, click Windows Application under Templates, and then click OK.


Note In Visual Studio 2005, Visual C# Projects is changed to Visual C#.

Create ActiveX Interop assemblies

  1. Click Start, point to All Programs, point to Microsoft Visual Studio .NET, point to Visual Studio .NET Tools, and then click Visual Studio .NET Command Prompt.

    Note In Visual Studio 2005, Microsoft Visual Studio .NET is changed to Microsoft Visual Studio 2005. Visual Studio .NET Tools is changed to Visual Studio 2005 Tools. Visual Studio .NET Command Prompt is changed to Visual Studio2005 Command Prompt.
  2. To create the two interop assemblies that you must have, type the following command:

    aximp /out:C:\temp\AxMyProject.dll "C:\Windows\System32\MyProject.ocx"

    AxMyProject.dll is for AxHost Interop. MyProject.dll is for COM Interop.

Dynamically create the control

  1. On the Project menu, click Add Reference.
  2. Click Browse, and then select the ActiveX Control Interop assemblies that you just created (they should be in C:\Temp).
  3. Add both AxMyProject.dll and MyProject.dll; adding these files copies them locally.
  4. Add a Button control to the form.
  5. Double-click the button to find the code for the Button Click Event method.
  6. In the Button Click Event method, paste the following code:

      AxMyProject.AxMyLicensedControl  myControl = new AxMyProject.AxMyLicensedControl();

    This creates a new instance of the control through AxHost.

    Note Do not create a new instance of the control through COM (New MyProject.MyLicensedControl), because this will not work on the form, and you cannot easily add the license.

Add the license to the control

  1. Determine and note the run-time license key for the control. For MyLicensedControl, the license key is "gnvlslnjskvlmlgnnimh".
  2. In the Button Click Event method, paste the following code below "AxTestActiveXComponent.AxUserControl1 myControl = new AxTestActiveXComponent.AxUserControl1();"

      System.Reflection.FieldInfo f = 
             typeof(AxHost).GetField("licenseKey", 
             System.Reflection.BindingFlags.NonPublic |
             System.Reflection.BindingFlags.Instance);
      f.SetValue(myControl, "gnvlslnjskvlmlgnnimh");

    This code inserts the run-time license into the control. It creates an instance of FieldInfo, which is part of the property bag OCXState. This property bag is full of specific ActiveX control information. In this case, you are obtaining the field licenseKey and setting it for myControl. You must do this for each instance of any ActiveX control that requires a run-time license.

Add the control to the form

  1. Add the control to the form's Controls collection, and then show the control. To do this, you can use the following code:

            Controls.Add(myControl);
            myControl.Show();

    Paste this code in the Button Click Event method, after "f.SetValue(myControl, "gnvlslnjskvlmlgnnimh");", and before the End Sub.

    Note If the license is not added to the control and the license is required, myControl.Show fails. MyControl.Show runs the code that contains that license validation. When you try and run myControl.Show, you see the following error in debug mode:

    An unhandled exception of type 'System.ComponentModel.LicenseException' occurred in system.windows.forms.dll Additional information: You do not have a license to use this ActiveX control.

    Or, at run time, you may see the following similar message:

    An unhandled exception has occurred in your application.
    You do not have a license to use this ActiveX control.

  2. Press F5 to run the project.
  3. Click the button to add your ActiveX control to the form.

Troubleshooting

Important Note the following about this operation:

  • You must add the license to every instance of every ActiveX control that requires a run-time license. For example, if you create a second instance of MyLicensedControl, you have to add the license to that instance also.
  • Make sure that you have the correct license key for your control. Determining the correct license key is specific to the control: For more information about determining the key, click the following article number to view the article in the Microsoft Knowledge Base:

    151771 The Licreqst.exe sample demonstrates how to request the License key of an object in Visual C++

    Alternatively, you can use Licenses.Add for the control in Visual Basic 6 on a computer that has the license in the registry. Licenses.Add returns the run-time license that it added as a string; you can then use Debug.Print to obtain the license key.


REFERENCES

For more information, click the following article numbers to view the articles in the Microsoft Knowledge Base:

241126 INFO: Dynamically add user controls that require run-time licenses


188577 HOWTO: What is the licenses collection used for?


190670 How to dynamically add controls to a form with Visual Basic 6.0



Additional query words: dynamic addition additional need

Keywords: kbhowtomaster KB326652