Click here to Skip to main content
6,629,885 members and growing! (24,602 online)
Email Password   helpLost your password?
Platforms, Frameworks & Libraries » .NET Framework » How To     Intermediate License: The Code Project Open License (CPOL)

Dynamically adding ActiveX controls in managed code

By David M Brooks

A technique for dynamically adding ActiveX controls to managed code.
C#, VB.NET 1.1, Win2K, WinXPVS.NET2003, Dev
Posted:28 Jun 2005
Views:62,787
Bookmarked:31 times
Announcements
Loading...
 
Search    
Advanced Search
Add to IE Search
printPrint   add Share
      Discuss Discuss   Broken Article?Report  
18 votes for this article.
Popularity: 5.73 Rating: 4.56 out of 5
1 vote, 5.6%
1

2
1 vote, 5.6%
3
5 votes, 27.8%
4
11 votes, 61.1%
5

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


Member
When Dave isn't trying to play drums, fly helicopters or race cars, he can be found trying to be a Consultant at www.candelamedia.co.uk He must try harder!

You can read Dave's ramblings in his blog Aliens Ate My GUI
Occupation: Web Developer
Location: United Kingdom United Kingdom

Other popular .NET Framework articles:

Article Top
You must Sign In to use this message board.
FAQ FAQ 
 
Noise Tolerance  Layout  Per page   
 Msgs 1 to 25 of 27 (Total in Forum: 27) (Refresh)FirstPrevNext
QuestionVista 64 BIt. PinmemberPrem Alva15:21 17 Dec '08  
GeneralIt would be really good .... But..... Pinmembertony691:07 7 Dec '07  
GeneralHow to set event callback? PinmemberGoldbach3:22 20 Sep '07  
GeneralHow to get the ProgID? Pinmemberjason_mf16:38 12 Jun '07  
GeneralDynamically adding Ax and accessing control specific properties PinmemberrurouniRonin10:28 12 Mar '07  
GeneralRe: Dynamically adding Ax and accessing control specific properties Pinmembercstrader23215:45 1 Jul '07  
GeneralUnloading activex Pinmembermailhacker5:37 7 Feb '07  
GeneralDoesn't work in .NET 2.0 Pinmembercanter6:51 25 Sep '06  
GeneralRe: Doesn't work in .NET 2.0 PinmemberDavid Broooks4:12 11 Dec '06  
GeneralRe: Doesn't work in .NET 2.0 Pinmembertanya_kuraeva3:31 5 Oct '09  
Generaluseful article Pinmembercheesesarnie22:59 23 Aug '06  
GeneralTHANK YOU VERY MUCH!!!! PinmemberLomboAgridoce22:08 18 Jul '06  
GeneralHow to replace VBcontrolExtender functioality in VB.NET PinmemberPatMcHargue7:56 16 May '06  
GeneralHow to use method activeX control Pinmembercontactdev7:00 2 May '06  
GeneralRe: How to use method activeX control PinmemberPatMcHargue8:17 16 May '06  
GeneralRe: How to use method activeX control PinmemberbrianbruffIRL1:27 22 Jan '07  
GeneralRe: How to use method activeX control Pinmemberjefight12:39 22 Jul '08  
QuestionRe: How to use method activeX control Pinmemberesub5:18 7 Nov '08  
GeneralRe: How to use Events of activeX control Pinmemberesub5:20 7 Nov '08  
QuestionRe: How to use method activeX control Pinmemberesub5:22 7 Nov '08  
GeneralHow to use Events of activeX control Pinmemberesub5:21 7 Nov '08  
GeneralSome Doubts Pinmembermilanboi19:33 26 Feb '06  
GeneralMissing Dispose Pinmembermark.suykens22:53 3 Nov '05  
QuestionInvoke Methods PinmemberMihai Palade3:32 16 Sep '05  
AnswerRe: Invoke Methods PinmemberbrianbruffIRL1:28 22 Jan '07  

General General    News News    Question Question    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

PermaLink | Privacy | Terms of Use
Last Updated: 28 Jun 2005
Editor: Smitha Vijayan
Copyright 2005 by David M Brooks
Everything else Copyright © CodeProject, 1999-2009
Web10 | Advertise on the Code Project