• 大小: 19.85MB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2023-07-26
  • 语言: C/C++
  • 标签: c++  条形码  barcode  

资源简介

c++ 生成条形码代码 的例子及代码 c++ 生成条形码代码 的例子及代码

资源截图

代码片段和文件信息

// BarCode.cpp : Defines the class behaviors for the application.
//

#include “stdafx.h“
#include “BarCode.h“
#include “ZDlg.h“

#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif

/////////////////////////////////////////////////////////////////////////////
// ZApp

BEGIN_MESSAGE_MAP(ZApp CWinApp)
//{{AFX_MSG_MAP(ZApp)
//}}AFX_MSG
ON_COMMAND(ID_HELP CWinApp::onhelp)
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// ZApp construction

ZApp::ZApp()
{
}

/////////////////////////////////////////////////////////////////////////////
// The one and only ZApp object

ZApp theApp;

/////////////////////////////////////////////////////////////////////////////
// ZApp initialization

BOOL ZApp::InitInstance()
{
AfxEnableControlContainer();

// Standard initialization

#ifdef _AFXDLL
Enable3dControls(); // Call this when using MFC in a shared DLL
#else
Enable3dControlsStatic(); // Call this when linking to MFC statically
#endif

ZDlg dlg;
m_pMainWnd = &dlg;
int nResponse = dlg.DoModal();
if (nResponse == IDOK)
{
}
else if (nResponse == IDCANCEL)
{
}

// Since the dialog has been closed return FALSE so that we exit the
//  application rather than start the application‘s message pump.
return FALSE;
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件      22812  2018-03-22 14:02  source_files\BarCode.aps

     文件       2071  2006-03-30 06:07  source_files\BarCode.clw

     文件       1392  2006-03-22 16:03  source_files\BarCode.cpp

     文件       4625  2006-03-30 04:22  source_files\BarCode.dsp

     文件        537  2006-03-22 16:03  source_files\BarCode.dsw

     文件       1158  2006-03-22 16:03  source_files\BarCode.h

     文件     173056  2006-03-30 08:30  source_files\BarCode.ncb

     文件      50688  2006-03-30 08:30  source_files\BarCode.opt

     文件        739  2006-03-30 06:09  source_files\BarCode.plg

     文件       5979  2006-03-30 06:09  source_files\BarCode.rc

     文件       1234  2018-03-22 14:07  source_files\BarCode.sln

    ..A..H.     58880  2018-03-22 14:19  source_files\BarCode.suo

     文件      14313  2018-03-22 14:12  source_files\BarCode.vcxproj

     文件       2594  2018-03-22 14:05  source_files\BarCode.vcxproj.filters

     文件        143  2018-03-22 13:59  source_files\BarCode.vcxproj.user

     文件    8568832  2018-03-22 14:12  source_files\Debug\BarCode.exe

     文件       1086  2006-03-27 02:35  source_files\EditMove.cpp

     文件       1127  2006-03-27 00:21  source_files\EditMove.h

     文件       1023  2006-03-29 11:12  source_files\Help.cpp

     文件        545  2006-03-29 11:09  source_files\Help.h

     文件   74973184  2018-03-22 14:11  source_files\ipch\barcode-2d2acf65\barcode-c50ca446.ipch

     文件      27106  2006-03-30 05:10  source_files\Lib\Barcode.h

     文件    8568832  2018-03-22 14:11  source_files\Output\BarCode.exe

     文件   22166628  2018-03-22 14:11  source_files\Output\BarCode.ilk

     文件       7601  2006-03-30 14:02  source_files\Output\dialog.gif

     文件       3049  2006-03-30 14:06  source_files\Output\help.htm

    ..A.SH.      4096  2009-03-26 15:16  source_files\Output\Thumbs.db

     文件       1078  2006-03-25 23:53  source_files\res\BarCode.ico

     文件        399  2006-03-22 16:03  source_files\res\BarCode.rc2

     文件       1467  2006-03-30 04:12  source_files\resource.h

............此处省略14个文件信息

评论

共有 条评论