发布网友 发布时间: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开发的不好,会有些问题的