資源簡介
用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
- 上一篇:MSP430的C語言版跑馬燈程序絕對可用
- 下一篇:CKF和五階CKF的目標跟蹤代碼
評論
共有 條評論