彩票走势图

Barcode Xpress使用教程:如何在Visual C++中作为COM对象使用(1)

原创|使用教程|编辑:郝浩|2013-09-24 14:34:24.000|阅读 265 次

概述:在提供了容器支持如Visual Basic或Visual C++的开发环境中,barcode Xpress可以被作为一个ActiveX控件使用。在Visual C++中如何将Barcode Xpress作为一个导入的COM 对象使用呢?下面来具体的讨论一下。

# 慧都年终大促·界面/图表报表/文档/IDE等千款热门软控件火热促销中 >>

相关链接:

    在提供了容器支持如Visual Basic或Visual C++的开发环境中,Barcode Xpress可以被作为一个ActiveX控件使用。在这种情况下,BarcodeXpress控件将会被放置在窗体或对话框上。

    你也可以在开发环境如Visual C++中将Barcode Xpress作为一个COM 对象导入,在这种情况下,BarcodeXpress并不会局限于一个对话框,同时它也不需要容器支持。我们以下的讨论都是基于假定你的开发环境是Visual C + +。

    在Visual C++中如何将Barcode Xpress作为一个导入的COM 对象使用呢?下面来具体的讨论一下。

一、#importing一个控件到Visual C + +

    通过# import指令导入一个控件是一个很简单的过程,这个通过# import指令行可以添加到Stdafx.h文件中,为在项目中的所有的源文件提供相应的功能。下面的示例展示了ReadBarcodeFromDIB项目中Stdafx.h文件里import指令的使用。

// stdafx.h : include file for standard system include files,
// or project specific include files that are used frequently, but
// are changed infrequently
 			
#if !defined(AFX_STDAFX_H__73AF9569_D12A_49D1_82D7_9662053EE69A__INCLUDED_)
#define AFX_STDAFX_H__73AF9569_D12A_49D1_82D7_9662053EE69A__INCLUDED_
 
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
 
#define VC_EXTRALEAN // Exclude rarely-used stuff from Windows headers
 
#include <afxwin.h> // MFC core and standard components
#include <afxext.h> // MFC extensions
#include <afxdisp.h> // MFC Automation classes
#include <afxdtctl.h> // MFC support for Internet Explorer 4 Common Controls
#ifndef _AFX_NO_AFXCMN_SUPPORT
#include <afxcmn.h> // MFC support for Windows Common Controls
#endif // _AFX_NO_AFXCMN_SUPPORT
 
#import "Accusoft.ImagXpress11.ActiveX.dll"
#import "Accusoft.BarcodeXpress9.ActiveX.dll"
//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.
 
#endif // !defined(AFX_STDAFX_H__73AF9569_D12A_49D1_82D7_9662053EE69A__INCLUDED_)

    #import指令仅指向的BarcodeXpress控件。当BarcodeXpress控件被#import指令导入时,编译器会产生2个文件 - TLI和TLH文件,这两个文件一起为控件的属性和方法创建必要的COM wrapper。由于该指令是在你的stdafx.h文件中,所以你的其他模块也可可以使用wrappers。Wrapper代码定义了COM智能指针到你.IDL-defined接口,要使用这个COM项目,你支持需要创建一个想要要接口的实例,然后通过使用这个示例指针直接调用方法就可以了。

二、给COM对象定义一个指针

    在添加了#import指令之后,必须给BarcodeXpress COM对象定义一个指针。在ReadBarcodeFromDIB项目中,这个指针会被调用,并在ReadBarcodeFromDIBDlg.h文件中想下面一样被实现:

using namespace AccusoftBarcodeXpress9;
#include "..\Include\BarcodeXpress9_Events.h"
...
class CReadBarcodeFromDIBDlg : public CDialog
{
private:
...
//ImagXpress pointers
CImagXpress*        m_ppCImagXpress;
IImagXpressPtr       m_pImagXpress;
 
CBarcodeXpress*    m_ppIBarcodeXpress;
IBarcodeXpressPtr   m_pBarcodeXpress;
...

>>>Barcode Xpress 下载


标签:

本站文章除注明转载外,均为本站原创或翻译。欢迎任何形式的转载,但请务必注明出处、不得修改原文相关链接,如果存在内容上的异议请邮件反馈至chenjj@pclwef.cn

文章转载自:慧都控件

为你推荐

  • 推荐视频
  • 推荐活动
  • 推荐产品
  • 推荐文章
  • 慧都慧问
扫码咨询


添加微信 立即咨询

电话咨询

客服热线
023-68661681

TOP