C#如何调用OCX文件

发布网友 发布时间:2022-04-22 02:13

我来回答

2个回答

热心网友 时间:2024-01-25 12:35

1.将IDCard.ocx文件放在C盘根目录下,打开visual studio 2005命令提示 工具窗口 如图所示:

输入aximp c:\IDCard.oxc 会生两个dll文件----IDCardLib.dll、AxIDCardLib.dll。


2.在程序在添加引用 IDCardLib.dll、AxIDCardLib.dll。

  private void Form1_Load(object sender, EventArgs e)
  {

  AxIDCardLib.AxIDCard idcard = new AxIDCardLib.AxIDCard();
            ((System.ComponentModel.ISupportInitialize)(idcard)).BeginInit();
            this.Controls.Add(idcard);
            ((System.ComponentModel.ISupportInitialize)(idcard)).EndInit();

      //下面便可调用IDCard里面的方法了。


}

热心网友 时间:2024-01-25 12:36

在菜单【项目】-【添加引用】-【浏览】选择你要引用的ocx文件,然后按照ocx的开发文档调用就可以了,如果OCX开发的不好,会有些问题的

声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com