Click here to Skip to main content
Click here to Skip to main content

Create ActiveX in .NET Step by Step

By , 4 Mar 2008
 

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:

[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:

///<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.:

[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:

[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:

<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:

<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:

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:

[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:

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:

<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:

    <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”:

    <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)

About the Author

Michał Kosmala
Web Developer
Poland Poland
Member
ASP.NET Developer since 2004

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
QuestionReturn values from JavaScriptmemberShashi Saini11 Apr '13 - 12:38 
I have a JavaScript function like this
 
function IsOk(UserName, Password) {
 
test(UserName, Password);
return true;
 
}
 
How to capture the return value from this JavaScript function in .NET code
 
/// Raise the RaiseIsUserAuthenticated through ePrescribe jsp page to Help2 MessageLog
/// </summary>
/// <param name="userName">User Name</param>
/// <param name="password">Password</param>
public bool RaiseIsOK(string userName, string password)
{
bool isOK = false;
if (ScriptObject != null)
{
object obj = ScriptObject.GetType().InvokeMember("IsOk";, BindingFlags.InvokeMethod, null, script, new object[] { userName, password });
if (obj != null)
{
isOK = (bool)obj;
}
}
return isOK ;
}
 
But this gives me exception (Exception from HRESULT: 0x80020006 (DISP_E_UNKNOWNNAME)
 
Any ideas how can I capture a return value from JavaScript?
QuestionNot working on client machinememberNader El Masry23 Dec '12 - 5:01 
Your example is really amazing, i applied all what you wrote and tested it in my machine with registering dll using cmd command and it worked well.
The problem when i tried it on another machine it didn't work !!
All what i did that i took setup.exe and ini file into .cab file and i took the cab file and the html page and tried to run it on the other machine, it request to allow the cab file to run , when i press yes it doesn't do anything and then error message "Object doesn't support property or method 'Open'"
what shall i do ?
GeneralMy vote of 5memberYugan_SA3 Dec '12 - 23:05 
Works perfectly
thanks so much
QuestionActiveX might not be safememberJoni_7825 Nov '12 - 7:19 
Hi,
Thanks for the great tutorial.
 
When DLL is registered on the machine that runs it, not using cab, how do I get rid of the IE message about ActiveX might not be safe...?
QuestionCab file for registering a dll in windows 7 using web aplicationmemberJeyamani23 Nov '12 - 17:53 
Hi,
Please tell me that i want to create a cab file to register a dll in registry and cab file will be download from my website.
 
Thank in advance,
Jey
QuestionUnable Create Cab filememberevreddy46117 Oct '12 - 20:01 
when i am trying to create a cab file its getting an error that is "FCIFlushCabinet<> Failed : code6 [could not create cabinet file]" . can u please help to create a cab file.
GeneralMy vote of 1memberJecka2 Oct '12 - 5:01 
nothing works
QuestionMember not Foundmembersri43713 Jul '12 - 23:31 
I followed the steps which are given in document.While running my web application im getting "Member not found exception open()".Can any one suggest me how to solve this issue.
 
Thanks in advance.
QuestionAdvice ,,,memberabojanty10 Jul '12 - 11:17 
Hi , thanks for this topic it's very useful , but i have a question i don't understand what is the setup.exe ( what it contains !! )
 
I tried to build a new setup project with vs 2008 without any file ( I know i'm stupid ^_^)
 
and execute the command
 
cabarc.exe n OurActiveX.cab OurActiveX.inf setup.exe
 
and the OurActiveX.cab was successfully created
 
and when i browsing the ActiveXTest.html this alert is prompt " Object doesn't support property or method 'Open'
 
can you help me Please and tell me how to build the setup.exe
 
thank's
QuestionActiveX control is not working in browsermemberthamim30 Apr '12 - 2:57 
Dear!
i read article Create ActiveX in .NET Step by Step , i download the sample which is given in the article and followed that article step by step but i didn't get the out put. ActiveX control was not working when we browse the html or aspx page, so please can any one help me to get the out put in the browser..
 
Thanks & Regards

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

Permalink | Advertise | Privacy | Mobile
Web02 | 2.6.130523.1 | Last Updated 4 Mar 2008
Article Copyright 2008 by Michał Kosmala
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid