• 大小: 239KB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-06-12
  • 语言: C/C++
  • 标签: 点阵字  

资源简介

用VC++写的点阵字生成器 对于有VC基础的朋友是不错的练习 通过程序可以理解点阵字的原理 点阵字应用还是很广泛的...

资源截图

代码片段和文件信息

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

#include “stdafx.h“
#include “DotCharacter.h“
#include “DotCharacterDlg.h“

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

/////////////////////////////////////////////////////////////////////////////
// CDotCharacterApp

BEGIN_MESSAGE_MAP(CDotCharacterApp CWinApp)
//{{AFX_MSG_MAP(CDotCharacterApp)
// NOTE - the ClassWizard will add and remove mapping macros here.
//    DO NOT EDIT what you see in these blocks of generated code!
//}}AFX_MSG
ON_COMMAND(ID_HELP CWinApp::onhelp)
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CDotCharacterApp construction

CDotCharacterApp::CDotCharacterApp()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}

/////////////////////////////////////////////////////////////////////////////
// The one and only CDotCharacterApp object

CDotCharacterApp theApp;

/////////////////////////////////////////////////////////////////////////////
// CDotCharacterApp initialization

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

// Standard initialization
// If you are not using these features and wish to reduce the size
//  of your final executable you should remove from the following
//  the specific initialization routines you do not need.

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

CDotCharacterDlg dlg;
m_pMainWnd = &dlg;
int nResponse = dlg.DoModal();
if (nResponse == IDOK)
{
// TODO: Place code here to handle when the dialog is
//  dismissed with OK
}
else if (nResponse == IDCANCEL)
{
// TODO: Place code here to handle when the dialog is
//  dismissed with Cancel
}

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

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

     文件     177888  2009-11-24 23:30  DotCharacter\DotCharacter.aps

     文件       1704  2009-11-25 08:57  DotCharacter\DotCharacter.clw

     文件       2147  2009-11-16 09:27  DotCharacter\DotCharacter.cpp

     文件       4460  2009-11-18 14:51  DotCharacter\DotCharacter.dsp

     文件        547  2009-11-16 09:27  DotCharacter\DotCharacter.dsw

     文件       1390  2009-11-16 09:27  DotCharacter\DotCharacter.h

     文件      50176  2009-11-30 12:09  DotCharacter\DotCharacter.ncb

     文件      48640  2009-11-30 12:09  DotCharacter\DotCharacter.opt

     文件       1651  2009-11-30 12:07  DotCharacter\DotCharacter.plg

     文件       6296  2009-11-25 09:05  DotCharacter\DotCharacter.rc

     文件       8894  2009-11-30 12:05  DotCharacter\DotCharacterDlg.cpp

     文件       1693  2009-11-16 16:15  DotCharacter\DotCharacterDlg.h

     文件     267616  1998-09-06 07:20  DotCharacter\HZK16

     文件       3687  2009-11-16 09:27  DotCharacter\ReadMe.txt

     文件     140990  2009-11-18 14:49  DotCharacter\res\21.ico

     文件       1078  2009-11-16 09:27  DotCharacter\res\DotCharacter.ico

     文件        766  2009-11-18 14:39  DotCharacter\res\icon2.ico

     文件       1103  2009-11-18 14:49  DotCharacter\resource.h

     文件        214  2009-11-16 09:27  DotCharacter\StdAfx.cpp

     文件       1054  2009-11-16 09:27  DotCharacter\StdAfx.h

     目录          0  2009-11-19 12:09  DotCharacter\res

     目录          0  2009-11-30 12:09  DotCharacter

----------- ---------  ---------- -----  ----

               721994                    22


评论

共有 条评论