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

Dynamically adding ActiveX controls in managed code

By , 28 Jun 2005
 

Introduction

Visual Studio .NET provides a way for developers to easily add (unmanaged) ActiveX controls to C# or VB.NET forms. However, there are times when you need to add these controls dynamically using code. I was recently presented with exactly this problem and despite searching the usual internet resources for a simple solution, all I could find was questions - no real answers.

I needed to port a suite of ActiveX controls that plug-in into a GUI framework using only their ProgID as a reference into a new .NET GUI framework. The plug-in approach used for the GUI framework was used so new controls could be easily added without the need for the GUI framework code having to change. A manager asks the framework to provide a container window and tells it what the ProgID of the contained control is. This de-coupled approach using just a control reference (in this case the ProgID) is a well used technique in plug-in architectures.

Although Visual Studio allows this to happen at design time by adding a reference or a control to the toolbox, these can't really be used dynamically using code.

Hosting an ActiveX control on a Windows form

Back in the good (bad) old days of VB6, dynamically creating controls on a form was easy. Whether a simple control or some ActiveX control, you just create an instance using CreateObject and add the control to the form's control collection. In a managed environment things are a bit more tricky. You can't just host the ActiveX control on the form because you're trying to run an unmanaged component on a managed form.

Fortunately, Microsoft has helpfully provided a runtime callable wrapper (RCW) class to simplify things - System.Windows.Forms.AxHost. Regardless of whether you are using C# or VB.NET, in a managed environment, Windows Forms can only host Windows Forms controls. All Windows Forms controls are classes that are derived from the System.Windows.Forms.Control class. To host an ActiveX control on a form, it must look like a Windows Forms control from the form's viewpoint and an ActiveX container from the ActiveX viewpoint. This is exactly what the System.Windows.Forms.AxHost class wrapper does. It also exposes the ActiveX methods, properties and events.

This is all well and good and Visual Studio does this under the hood when you add a reference to the control or use the aximp.exe command line tool. However, it's no direct use to us when we want to write code to dynamically instantiate and use ActiveX controls on a form. Clearly we need to do what AxHost does but without having to rewrite it. As it turns out, the solution is pretty straightforward. Although AxHost is an abstract class (Must Inherit if you're currently speaking VB.NET) we can use it to do all the work for us.

If you haven't used aximp.exe before MSDN can explain all.

Use the Source, Luke!

The C# AxForm class below shows how you might implement dynamic ActiveX hosting using the AxHost runtime callable wrapper class. As I said earlier, this is an abstract class, so the AxControl class has been introduced. It simply takes a ProgID as a string in the constructor and passes this onto the AxHost constructor. This is used in the InitializeComponent method to create the wrapped control using the AxControl class.

using System;
using System.Collections;
using System.ComponentModel;
using System.Drawing;
using System.Data;
using System.Windows.Forms;
using System.Resources;

namespace AxForms
{
    /// <summary>
    /// Summary description for AxControl.
    /// </summary>
    public class AxControl : AxHost 
    {
        public AxControl(string strCLSID) : base(strCLSID) 
        {
        }
    }

    /// <summary>
    /// Summary description for AxForm.
    /// </summary>
    public class AxForm : Form
    {
        private AxControl m_axCtrl;
        private Container components = null;

        public AxForm(string strProgId)
        {
            InitializeComponent(strProgId);

            // TODO: Add any initialization after the InitForm call
        }


        protected override void Dispose(bool disposing)
        {
            if (disposing)
                if (components != null)
                    components.Dispose();
            base.Dispose(disposing);
        }

        private void InitializeComponent(string strProgId)
        {
            ResourceManager resources = new ResourceManager(typeof(AxForm));    

            Type type = Type.GetTypeFromProgID(strProgId, true);
            m_axCtrl = new AxControl(type.GUID.ToString());

            ((ISupportInitialize)(m_axCtrl)).BeginInit();
            SuspendLayout();

            m_axCtrl.Enabled = true;
            m_axCtrl.Name = "axCtrl";
            m_axCtrl.TabIndex = 0;

            Controls.Add(m_axCtrl);
            Name = "AxForm";
            ((ISupportInitialize)(m_axCtrl)).EndInit();
            Resize += new EventHandler(AxForm_Resize);
            ResumeLayout(false);
            OnResize();
            Show();
        }

        private void OnResize()
        {
            m_axCtrl.Width = Width;
            m_axCtrl.Height = Height;
        }

        private void AxForm_Resize(object sender, EventArgs e)
        {
            OnResize();
        }
    }
}

In this particular implementation, the hosted ActiveX control is resized to fit the form whenever it's resized - hence the need for the AxForm_Resize handler. Obviously, other implementations might want to arrange the controls differently on the form. The code would need to change, but the same idea can be used - using AxControl as an intermediate class to AxHost. Incidentally, this shows a C# implementation, but the technique is equally applicable to VB.NET.

To use the class, you only need to know the ProgID of the ActiveX control you want to host. For example:

m_axForm = new AxForms.AxForm("OWC.Spreadsheet.9");

The nugatory sample code supplied demonstrates how you might use the class in your application. It has a couple of hard coded ProgIDs for the OWC spreadsheet and the Outlook control. Obviously, these will only work if these are registered on your system. Alternatively, a third option allows you to enter the ProgID of the control you want to instantiate. Note, I have omitted any error checking in the sample code for clarity.

License

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

About the Author

David M Brooks
Web Developer
United Kingdom United Kingdom
Member
When Dave isn't trying to play drums, fly helicopters or race cars, he can be found trying to be CTO at www.eventility.co.uk He must try harder!
 
You can read Dave's ramblings in his blog Aliens Ate My GUI
 
Or, if you can be bothered, he twitters on BoomerDave

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   
Generalclass not registeredmemberXinyiChen13 Sep '11 - 5:17 
When I run your demo project, the any of existing control and myself activex isn't working , it raised exception - class not registered, breakpoint is at ((ISupportInitialize)(m_axCtrl)).EndInit();
Any ideas? :(
GeneralRe: class not registeredmemberXinyiChen13 Sep '11 - 5:30 
Let me answer myself question.
I changed the platform target to 32 bit (x86), initially, it's any cpu.
now my control is working now! my activex control was created under 32 bit platform.
 
Roll eyes | :rolleyes:
QuestionVista 64 BIt.memberPrem Alva17 Dec '08 - 14:21 
This peice of code didnt work for me on Vista 64 box. Thrown a exception CO_E_CLASSSTRING.
 
{"Invalid class string (Exception from HRESULT: 0x800401F3 (CO_E_CLASSSTRING))"}
{System.Type GetTypeFromProgIDImpl(System.String, System.String, Boolean)}
 
Could someone throw some light on running COM/ActiveX components on 64 Bit machines?
 
Thank you
Confused | :confused: Dead | X|
GeneralIt would be really good .... But.....membertony697 Dec '07 - 0:07 
This would be really good if you completed the example and displayed clearly how methods and events worked.
Tony
QuestionHow to set event callback?memberGoldbach20 Sep '07 - 2:22 
This is the great job I never seem in other place.
But I want to set event callback, do you know how to do that?
Thanks!
QuestionHow to get the ProgID?memberjason_mf12 Jun '07 - 15:38 
first thank you for this demo.
Now I have an OCX, but I do not know its CLSID.
So I can not get ProgID with "ProgIDFromCLSID()".
please tell me how to get them such as "CLSID","ProgID"?
Thank you.
GeneralDynamically adding Ax and accessing control specific propertiesmemberrurouniRonin12 Mar '07 - 9:28 
How is it possible to add an Ax control at runtime and access its unique properties? Take the AxSpreadsheet for example. It can be added as a control and its basic control properties can be accessed, but as soon as you try to access properties specific to the AxSpreadsheet InvalidActiveXStateExceptions are thrown?
 
I've been searching for a long time but can't find out how to do this! Is there nowhere you can monitor or manage the state of an Ax control?
GeneralRe: Dynamically adding Ax and accessing control specific propertiesmembercstrader2321 Jul '07 - 14:45 
Anybody make any progress on this? I don't see how to call the methods on the loaded ActiveX control yet.
 
Thanks
 

GeneralUnloading activexmembermailhacker7 Feb '07 - 4:37 
Could you explain how to properly unload dynamically loaded ActiveX controls? I am doing the same thing in my app, but closing the app gives a memory reference exception (always).
 

Your help will be greatly appreciated.
 
Bobby Alexander

GeneralDoesn't work in .NET 2.0membercanter25 Sep '06 - 5:51 
I use this project in Visual Studio 2003 and works fine Big Grin | :-D , but when I try to use it in Visual Studio 2005 throw the exception "Class not registere (Exception from HRESULT: 0x80040154 (REGDB_E_CLASSNOTREG))" OMG | :OMG:
How can I do to use it in .NET 2.0?
Thansk alot.

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

Permalink | Advertise | Privacy | Mobile
Web03 | 2.6.130523.1 | Last Updated 28 Jun 2005
Article Copyright 2005 by David M Brooks
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid