资源简介
原书代码部分,视频资料太大,不包含!
《深入体验VC++项目开发》不但适合VisualC++的初学者,也适合有一定VisualC++基础的读者,甚至可以作为有一定造诣的程序员的参考书
代码片段和文件信息
// 6_1.cpp : Defines the class behaviors for the application.
//
#include “stdafx.h“
#include “6_1.h“
#include “MainFrm.h“
#include “6_1Doc.h“
#include “6_1View.h“
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CMy6_1App
BEGIN_MESSAGE_MAP(CMy6_1App CWinApp)
//{{AFX_MSG_MAP(CMy6_1App)
ON_COMMAND(ID_APP_ABOUT OnAppAbout)
// NOTE - the ClassWizard will add and remove mapping macros here.
// DO NOT EDIT what you see in these blocks of generated code!
//}}AFX_MSG_MAP
// Standard file based document commands
ON_COMMAND(ID_FILE_NEW CWinApp::OnFileNew)
ON_COMMAND(ID_FILE_OPEN CWinApp::OnFileOpen)
// Standard print setup command
ON_COMMAND(ID_FILE_PRINT_SETUP CWinApp::OnFilePrintSetup)
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CMy6_1App construction
CMy6_1App::CMy6_1App()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}
/////////////////////////////////////////////////////////////////////////////
// The one and only CMy6_1App object
CMy6_1App theApp;
/////////////////////////////////////////////////////////////////////////////
// CMy6_1App initialization
BOOL CMy6_1App::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
// Change the registry key under which our settings are stored.
// TODO: You should modify this string to be something appropriate
// such as the name of your company or organization.
SetRegistryKey(_T(“Local AppWizard-Generated Applications“));
LoadStdProfileSettings(); // Load standard INI file options (including MRU)
// Register the application‘s document templates. Document templates
// serve as the connection between documents frame windows and views.
CSingleDocTemplate* pDocTemplate;
pDocTemplate = new CSingleDocTemplate(
IDR_MAINframe
RUNTIME_CLASS(CMy6_1Doc)
RUNTIME_CLASS(CMainframe) // main SDI frame window
RUNTIME_CLASS(CMy6_1View));
AddDocTemplate(pDocTemplate);
// Parse command line for standard shell commands DDE file open
CCommandLineInfo cmdInfo;
ParseCommandLine(cmdInfo);
// Dispatch commands specified on the command line
if (!ProcessShellCommand(cmdInfo))
return FALSE;
// The one and only window has been initialized so show and update it.
m_pMainWnd->ShowWindow(SW_SHOW);
m_pMainWnd->UpdateWindow();
return TRUE;
}
/////////////////
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2017-09-18 21:45 深入体验VC++项目开发源代码\
目录 0 2011-11-06 20:40 深入体验VC++项目开发源代码\1\
文件 531 2001-11-10 14:35 深入体验VC++项目开发源代码\1\1.dsw
文件 82944 2011-11-06 20:40 深入体验VC++项目开发源代码\1\1.ncb
文件 55808 2011-11-06 20:40 深入体验VC++项目开发源代码\1\1.opt
文件 837780 2011-10-27 00:16 深入体验VC++项目开发源代码\1\6_1.aps
文件 1817 2011-10-27 00:19 深入体验VC++项目开发源代码\1\6_1.clw
文件 4183 2001-11-10 14:35 深入体验VC++项目开发源代码\1\6_1.cpp
文件 5088 2001-11-10 14:56 深入体验VC++项目开发源代码\1\6_1.dsp
文件 1333 2001-11-10 14:35 深入体验VC++项目开发源代码\1\6_1.h
文件 140288 2010-03-31 17:55 深入体验VC++项目开发源代码\1\6_1.ncb
文件 57856 2010-03-31 17:55 深入体验VC++项目开发源代码\1\6_1.opt
文件 715 2011-10-27 00:16 深入体验VC++项目开发源代码\1\6_1.plg
文件 11148 2010-11-11 00:09 深入体验VC++项目开发源代码\1\6_1.rc
文件 1716 2001-11-10 14:35 深入体验VC++项目开发源代码\1\6_1Doc.cpp
文件 1456 2001-11-10 14:35 深入体验VC++项目开发源代码\1\6_1Doc.h
文件 6584 2011-02-10 11:26 深入体验VC++项目开发源代码\1\6_1View.cpp
文件 2095 2001-11-10 14:38 深入体验VC++项目开发源代码\1\6_1View.h
目录 0 2011-10-27 00:16 深入体验VC++项目开发源代码\1\Debug\
文件 1105981 2011-10-27 00:16 深入体验VC++项目开发源代码\1\Debug\6_1.exe
文件 345552 2011-10-27 00:16 深入体验VC++项目开发源代码\1\Debug\6_1.ilk
文件 22696 2010-11-10 23:54 深入体验VC++项目开发源代码\1\Debug\6_1.obj
文件 5564220 2010-11-10 23:54 深入体验VC++项目开发源代码\1\Debug\6_1.pch
文件 500736 2011-10-27 00:16 深入体验VC++项目开发源代码\1\Debug\6_1.pdb
文件 815624 2010-11-11 00:09 深入体验VC++项目开发源代码\1\Debug\6_1.res
文件 14458 2010-11-10 23:54 深入体验VC++项目开发源代码\1\Debug\6_1Doc.obj
文件 29974 2011-02-10 11:26 深入体验VC++项目开发源代码\1\Debug\6_1View.obj
文件 20932 2011-10-27 00:16 深入体验VC++项目开发源代码\1\Debug\Game.obj
文件 18441 2010-11-10 23:54 深入体验VC++项目开发源代码\1\Debug\MainFrm.obj
文件 105740 2010-11-10 23:54 深入体验VC++项目开发源代码\1\Debug\StdAfx.obj
文件 222208 2011-10-27 00:16 深入体验VC++项目开发源代码\1\Debug\vc60.idb
............此处省略1132个文件信息
相关资源
- 网络台球游戏的源代码(vc++)
- 粒子滤波跟踪程序源代码
- C++结合Qt库编写的背单词软件源代码
- VTK图形图像开发进阶 源代码
- 虚拟机的设计与实现CC++(源代码和书
- c++飞机大战 源代码+程序
- 分形算法与程序设计_VC++实现电子书源
- VC++ OPENCV CT简单重建实现及PPT
- Visual C++数字图像处理开发入门与编程
- COM编程精彩+光盘(源代码
- 数据结构与算法分析.C++语言描述 第四
- VC++下的语音识别源代码
- VC++深入详解(完整版)+所有源代码集
- H264 TS打包C语言源代码
- C++ 经典泡泡龙源代码
- 精通MATLAB与C&C++混合程序设计第3版源
- C++图像处理系统源代码
- 《数值分析》(Numerical Recipes)3rd E
- C++结合Qt库编写的背单词软件源代码
- Numerical.Recipes.C++数值算法 第二版中文
- c++串口读写源代码
- 精通Visual C++数字图像处理技术与工程
- 《Visual+C%2B%2B+6.0+时尚编程百例》100个
- 病毒Phatbot的C++源代码
- c++基于Windows编程的打飞机小游戏源代
- Cppcheck源代码
- c++课程设计-----股票交易系统源代码
- Visual C++视频技术方案宝典的光盘源代
- 计算机图形学实践教程随书源代码
- 上期CTP_API_C++可实盘多合约多策略版本
评论
共有 条评论