Click here to Skip to main content
15,881,139 members
Articles / Programming Languages / C#

Using late binding to ActiveX controls in C#

Rate me:
Please Sign up or sign in to vote.
1.00/5 (5 votes)
13 Feb 2007CPOL 25.8K   8   2
Using ActiveX controls in Windows Forms applications using C#. NET.

Introduction

Recently, I has to use an ActiveX object (ThumbCtl class) and I had some problems with using an ActiveX control on a Windows Form.

Solution

You must consider that ActiveX controls can't be put directly on a Windows Form. For that, you have to do these steps:

  1. Generate wrapper assemblies for your ActiveX object. You can do this using the aximp.exe tool, e.g., aximp.exe c:\windows\system32\WEBVW.dll. Now you have generated two files: AxWEBVWLib.dll and WEBVWLib.dll.
  2. Add a reference to AxWEBVWLib.dll to your project.
  3. Now use your control like this:
  4. C#
    // Create new wrapper instance
    AxWEBVWLib.AxThumbCtl axctl = new AxWEBVWLib.AxThumbCtl();
    // Add object to specific window (control)
    mypanel.Controls.Add(axctl);
    // Set dock style
    axctl.Dock = DockStyle.Fill;
    // use OCX control methods (here we create thumbnail for our jpg file)
    axctl.displayFile(@"c:\temp\graphics.jpg");

License

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


Written By
Software Developer (Senior) Pareto PPN AS
Norway Norway
Application Developer and Solutions Architect with many skills in programming languages and technolgies. Specializes in Microsoft .NET platform for last 6 years. Additionally Database Developer with wide experience in MySql, Microsoft SqlServer. Specializes in in building Workflow Software using LogicBase Studio from Transparent Logic (Now Altiris Workflow Solution). Lastly improve his skills in software development in Lotus Domino and Sharepoint. His primary goal is to improve skills in building Enterprise Architectures and Project Management.

Comments and Discussions

 
Generala msg from thanhtuu Pin
Sean Ewington10-May-07 3:57
staffSean Ewington10-May-07 3:57 
GeneralTerse. Pin
NormDroid13-Feb-07 3:37
professionalNormDroid13-Feb-07 3:37 

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.