资源简介

MFC 一维码生成+打印 支持多种编码128 39 93 EAN UPC 2of5几种条码,有源代码。

资源截图

代码片段和文件信息

// 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;
}

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

     文件      36808  2018-05-07 12:37  BarcodePrint\BarcodePrint\BarCode.aps

     文件       3191  2018-05-07 12:37  BarcodePrint\BarcodePrint\BarCode.clw

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

     文件        548  2013-12-24 14:17  BarcodePrint\BarcodePrint\BarCode.dep

     文件       4629  2013-12-24 14:14  BarcodePrint\BarcodePrint\BarCode.dsp

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

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

     文件     230400  2018-05-07 12:37  BarcodePrint\BarcodePrint\BarCode.ncb

     文件      55808  2018-05-07 12:37  BarcodePrint\BarcodePrint\BarCode.opt

     文件       2110  2018-05-07 12:32  BarcodePrint\BarcodePrint\BarCode.plg

     文件       6020  2018-05-07 12:37  BarcodePrint\BarcodePrint\BarCode.rc

     文件    3122176  2018-05-07 12:32  BarcodePrint\BarcodePrint\Debug\BarCode.bsc

     文件      11841  2018-05-07 12:32  BarcodePrint\BarcodePrint\Debug\BarCode.obj

     文件    7035344  2018-05-07 12:32  BarcodePrint\BarcodePrint\Debug\BarCode.pch

     文件    3589120  2018-05-07 12:32  BarcodePrint\BarcodePrint\Debug\BarCode.pdb

     文件      12264  2018-05-07 12:32  BarcodePrint\BarcodePrint\Debug\BarCode.res

     文件          0  2018-05-07 12:32  BarcodePrint\BarcodePrint\Debug\BarCode.sbr

     文件       9786  2018-05-07 12:32  BarcodePrint\BarcodePrint\Debug\EditMove.obj

     文件          0  2018-05-07 12:32  BarcodePrint\BarcodePrint\Debug\EditMove.sbr

     文件       5154  2018-05-07 12:32  BarcodePrint\BarcodePrint\Debug\Help.obj

     文件          0  2018-05-07 12:32  BarcodePrint\BarcodePrint\Debug\Help.sbr

     文件     107624  2018-05-07 12:32  BarcodePrint\BarcodePrint\Debug\StdAfx.obj

     文件    1372692  2018-05-07 12:32  BarcodePrint\BarcodePrint\Debug\StdAfx.sbr

     文件     214016  2018-05-07 12:32  BarcodePrint\BarcodePrint\Debug\vc60.idb

     文件     364544  2018-05-07 12:32  BarcodePrint\BarcodePrint\Debug\vc60.pdb

     文件     142358  2018-05-07 12:32  BarcodePrint\BarcodePrint\Debug\ZDlg.obj

     文件          0  2018-05-07 12:32  BarcodePrint\BarcodePrint\Debug\ZDlg.sbr

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

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

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

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

评论

共有 条评论