Click here to Skip to main content
15,867,568 members
Articles / Web Development / HTML
Article

Create ActiveX in .NET Step by Step

Rate me:
Please Sign up or sign in to vote.
4.74/5 (66 votes)
4 Mar 2008CPOL7 min read 1.1M   60K   240   221
Article describes how to create ActiveX in .NET and how to use it on an HTML page step by step.

Introduction

At my job, I have had a project where I needed to deliver a solution for creating, distributing and running ActiveX controls written in .NET. This article summarizes all of it. Everything that is in this article can be found on the Web, but believe me this is not so easy;).

Using the Code

  • ActiveXSourceCode.zip - Contains .NET source code for the ActiveX
  • Setup.zip - Contains example of the *.ini file needed to create CAB
  • Web.zip - Example of the HTML file that embeds ActiveX object

So Let Us Start...

1) Creating .NET ActiveX

The first step you have to do is to create the ActiveX control:).

You can find a good introduction to this subject here.

This article describes how to create and expose Windows Forms on the Web site. Since there is no such support in the .NET Framework, WinForms are wrapped into ActiveX which is exactly what we need. In summary, what we need is to create a class that will be marked with those attributes:

C#
[ProgId("MyClassName")]

[Guid("MyGUID")] sdf 
[ComVisible(true)] 

Where:

  • ProgId is the unique name of the class that will be exposed as COM object
  • ClassInterface is the type of the COM interface that will wrap our .NET class
  • Guid is the unique GUID that will expose our class to be used as COM object. To create a new GUID, you can use the tool in Visual Studio Tools -> Create GUID
  • ComVisible tells that our class can be used as COM object

Registering COM object means that you need to make some entries in the registry. You can do this manually or you can write methods in your ActiveX that will do that for you when you register it with tools like regasm:

C#
///<summary>
///Register the class as a control and set its CodeBase entry
///</summary>
///<param name="key">The registry key of the control</param>
[ComRegisterFunction()]
public static void RegisterClass ( string key )
{
.
.
.
}

///<summary>
///Called to unregister the control
///</summary>
///<param name="key">The registry key</param>
[ComUnregisterFunction()]
public static void UnregisterClass ( string key)
{
.
.
.
}

Having those methods implemented, you can now use command: regasm /codebase MyAssemblie.dll which will run the RegisterClass method and regasm /u MyAssemblie.dll which will run the UnregisterClass method.

To expose .NET methods and properties in your class to be available as COM methods and properties, you have to add markup [ComVisible(true)] to them, i.e.:

C#
[ComVisible(true)]
public void Open()
{
. 
    System.Windows.Forms.MessageBox.Show(MyParam);
.
}

[ComVisible(true)]
public string MyParam
{
    get
    {          
        return myParam;
    } 
    set
    { 
        myParam = value;
    }
} 

You have to remember that your assembly must be signed using strong name key, this way you will have the ability to use more complicated controls, assemblies and features (like passing events back to the browser). To create new SNK, you can use tool: sn.exe (you can find it in the .NET SDK):

sn –k Kosmala.Michal.ActiveXReport.snk

Once you create a strong name key, copy it into your project path and put path to it in the AssemblyInfo.cs file in:

C#
[assembly:AssemblyKeyFile("../../Kosmala.Michal.ActiveXReport.snk")] 

Once you have your class registered as COM, you can now use it in your Web page.

2) Using ActiveX on the HTML Page

To start using your ActiveX in the HTML file, you just have to put one tag:

HTML
<OBJECT id="OurActiveX" name="OurActiveX" classid="clsid:MyGuid" 
	VIEWASTEXT codebase="OurActiveX.cab">

Where:

  • id and name are values that will be used to access our ActiveX from JavaScript
  • classid is the GUID of our ActiveX that we have put in [Guid("MyGUID")] section of our C# code
  • Codebase is the path to the file which should be launched when ActiveX with our GUID is not found. This is the place where the installation program (wrapped in CAB) should be placed.

Let us now forget for a moment about the codebase section since we are doing everything on our computer and we can register ActiveX with using regasm.

Now that our Web page knows what kind of ActiveX we want to use, we can actually start using it.

To do that, we just need to write some JavaScript code on the page. This code can look something like this:

JavaScript
<script language="javascript">

//Passing parameters to ActiveX object
function OpenActiveX()
{
    try
    {
        document.OurActiveX.MyParam = "Hi I am here."
        document.OurActiveX.Open();
    }
    catch(Err)
    { 
        alert(Err.description);
    }

    OpenActiveX();
}
</script> 

This script will assign value to MyParam and invoke the Open() method from our C# code which will return open MessageBox with “I am here” text. Open is just a name of the method, it can be named anything that you can think of.

Assigning variables works both ways. You can also read from ActiveX field using JavaScript.

Remember to set proper security values in your Internet Explorer that will allow running ActiveX.

3) Creating .cab Component

Now it is time to create the CAB file that will be launched when the browser won't find our ActiveX registered on the system. First of all, you have to create a setup program that will either be MSI or it will wrap MSI into setup.exe file. I have done this by using InstallShield application because this is what my company standard was, but you can use Visual Studio to do that (although I have never tested it). The important thing is that your setup has to register your ActiveX on a target computer. This might require having administration privileges.

Once you have your setup, you have to create CAB. To do that you can use cabsdk which you can find here.

Now, the important thing about our CAB is to attach not only our setup file but also *.ini file that will describe what CAB contains and what file should be launched. Our OurActiveX.ini can look something like this:

[version]
    signature="$<place w:st="""""on""""" /><city w:st="""""on""""" />CHICAGO</city /></place />$"
    AdvancedINF=2.0 
[Add.Code]
    setup.exe=setup.exe
[setup.exe]
    file-win32-x86=thiscab
    clsid={MyGuid}

Where:

  • [Add Code] section describes what sections of the file are mapped to what file. In our case, there is only one setup.exe file that is mapped by section with the same name.
  • [setup.exe] section is the one that is defined in the previous section. It is saying that file that it is mapped to should be launched when accessed with proper clsid. In this case, this is the MyGuid that is defined in our C# code and also in <OBJECT> tag.

Now that we have all files that we need, we can create CAB file using cabsdk by using the command:

cabarc.exe n OurActiveX.cab OurActiveX.inf setup.exe

Voila. Our basic ActiveX with distribution property is ready.

Now for something more sophisticated:).

4) Invoking JavaScript Methods from ActiveX

It might be necessary to send an event from ActiveX that JavaScript will catch, i.e. when you want to control redirection of the Web page when you close ActiveX.

To do that, you have to update your C# code. You have to add a new interface and a new delegate:

C#
public delegate void ControlEventHandler(string redirectUrl);

/// <summary>
/// This interface shows events to javascript
/// </summary>
[Guid(NewGuid)]
[InterfaceType(ComInterfaceType.InterfaceIsIDispatch)]
public interface ControlEvents
{
    //Add a DispIdAttribute to any members in the source interface 
    //to specify the COM DispId.
    [DispId(0x60020000)]
    void OnClose(string redirectUrl);
} 

This code creates an interface wrapper that will be visible outside as COM object. Every new event that will be available for COM must be marked DispId attribute.

(Creating .NET to COM objects http://www.csharphelp.com/archives/archive281.html)

Now we have to inherit our new interface in ActiveX control:

C#
[ClassInterface(ClassInterfaceType.AutoDual), 
	ComSourceInterfaces(typeof(ControlEvents))]

Since we are implementing ControlEvents interface, now we have to create OnClose event in our class which we can raise in our ActiveX:

C#
public event ControlEventHandler OnClose;

After compilation of this code, we have to register our ActiveX control (regasm) with additional parameter “/tlb” which will extract tlb COM library from our DLL and it will register it on our system:

regasm /codebase /tlb MyAssemblie.dll

Having this kind of code, we can add handling of this event in JavaScript:

JavaScript
<script language="javascript">
function OurActiveX::OnClose(redirectionUrl)
    { 
        window.location = hostUrl + "/" + redirectionUrl;
    }
</script>

Event is being attached only after the whole page has been loaded, so to use it we have to change the way of invoking JavaScript function: OpenActiveX. Now we have two ways of doing it:

  1. We can attach our function to i.e. button and our ActiveX will run when we will click on it:

    JavaScript
    <input type=button onclick=javascript:OpenActiveX()>
  2. If we want that it will be started automatically after the page will be loaded, we have to attach our function to body event “onload”:

    JavaScript
    <body onload=OpenActivex()>

You have to remember that your ActiveX assembly has to be signed and registered with additional parameter “/tlb”.

This is a very simple ActiveX but it can call any WinForms control or application that your user has rights to.

Points of Interest

As you can see, it is very easy to create and distribute ActiveX in .NET, but it is very difficult to find right answers on the Web probably because not so many people are using ActiveX nowadays.

I hope that this article will cut your search time as much as possible.

History

  • 4th March, 2008: Initial post

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Web Developer
Poland Poland
ASP.NET Developer since 2004

Comments and Discussions

 
QuestionAm using Visual studio 2019 and trying to get this code to work. Pin
Member 1377078730-Mar-21 9:49
Member 1377078730-Mar-21 9:49 
QuestionI am also getting the same error. Object does not support object or method Open. Pin
iplayttnc27-Apr-16 10:25
iplayttnc27-Apr-16 10:25 
AnswerRe: I am also getting the same error. Object does not support object or method Open. Pin
Member 1373973721-Mar-18 13:56
Member 1373973721-Mar-18 13:56 
QuestionObject doesn't support property or method Pin
Nezam Ahamed29-Sep-15 8:50
Nezam Ahamed29-Sep-15 8:50 
QuestionIIS Problem Pin
PersianTiTan21-Jan-15 2:27
PersianTiTan21-Jan-15 2:27 
GeneralMy vote of 2 Pin
CSharpner.com13-Oct-14 5:38
CSharpner.com13-Oct-14 5:38 
QuestionActiveX works with Framework 4.0 but doesnt work with 3.5 Pin
sunil mali2-Sep-14 19:50
sunil mali2-Sep-14 19:50 
AnswerRe: ActiveX works with Framework 4.0 but doesnt work with 3.5 Pin
Member 1377078730-Mar-21 9:46
Member 1377078730-Mar-21 9:46 
QuestionHelp Please Pin
Member 1062819126-Feb-14 12:11
Member 1062819126-Feb-14 12:11 
QuestionHow to create setup file from dll created in example mentioned by you. Pin
sunil mali1-Jan-14 23:27
sunil mali1-Jan-14 23:27 
Questiongetting error Pin
hina_abbas12324-Oct-13 1:51
hina_abbas12324-Oct-13 1:51 
QuestionSide by Side versions Pin
Mrunal Buch10-Oct-13 23:36
Mrunal Buch10-Oct-13 23:36 
QuestionAnother Source Pin
Member 1028981323-Sep-13 0:17
Member 1028981323-Sep-13 0:17 
GeneralMy vote of 5 Pin
Amir Mohammad Nasrollahi14-Aug-13 23:43
professionalAmir Mohammad Nasrollahi14-Aug-13 23:43 
QuestionReturn values from JavaScript Pin
Shashi Saini11-Apr-13 12:38
Shashi Saini11-Apr-13 12:38 
QuestionNot working on client machine Pin
Nader El Masry23-Dec-12 5:01
Nader El Masry23-Dec-12 5:01 
GeneralMy vote of 5 Pin
Yugan_SA3-Dec-12 23:05
Yugan_SA3-Dec-12 23:05 
QuestionActiveX might not be safe Pin
Joni_7825-Nov-12 7:19
Joni_7825-Nov-12 7:19 
QuestionCab file for registering a dll in windows 7 using web aplication Pin
Jeyamani23-Nov-12 17:53
Jeyamani23-Nov-12 17:53 
QuestionUnable Create Cab file Pin
evreddy46117-Oct-12 20:01
evreddy46117-Oct-12 20:01 
GeneralMy vote of 1 Pin
Jecka2-Oct-12 5:01
Jecka2-Oct-12 5:01 
QuestionMember not Found Pin
sri43713-Jul-12 23:31
sri43713-Jul-12 23:31 
QuestionAdvice ,,, Pin
abojanty10-Jul-12 11:17
abojanty10-Jul-12 11:17 
QuestionActiveX control is not working in browser Pin
thamim30-Apr-12 2:57
thamim30-Apr-12 2:57 
GeneralMy vote of 5 Pin
Edmo Costa27-Apr-12 10:45
Edmo Costa27-Apr-12 10:45 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.