资源简介
控制台嵌入MFC,可以在mfc对话框中直接输入cmd命令
代码片段和文件信息
// MyCmd.cpp : Defines the class behaviors for the application.
//
#include “stdafx.h“
#include “MyCmd.h“
#include “MyCmdDlg.h“
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CMyCmdApp
BEGIN_MESSAGE_MAP(CMyCmdApp CWinApp)
//{{AFX_MSG_MAP(CMyCmdApp)
// 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()
/////////////////////////////////////////////////////////////////////////////
// CMyCmdApp construction
CMyCmdApp::CMyCmdApp()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}
/////////////////////////////////////////////////////////////////////////////
// The one and only CMyCmdApp object
CMyCmdApp theApp;
/////////////////////////////////////////////////////////////////////////////
// CMyCmdApp initialization
BOOL CMyCmdApp::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
CMyCmdDlg 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;
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2013-09-18 16:54 Debug\
文件 100864 2013-09-18 16:52 Debug\MyCmd.exe
文件 35604 2010-10-24 15:58 MyCmd.aps
文件 1061 2010-10-24 17:58 MyCmd.clw
文件 2063 2010-10-24 15:56 MyCmd.cpp
文件 4141 2010-10-24 15:31 MyCmd.dsp
文件 535 2010-10-24 15:31 MyCmd.dsw
文件 1406 2010-10-24 15:44 MyCmd.h
文件 49664 2010-10-24 17:58 MyCmd.opt
文件 947 2010-10-24 17:42 MyCmd.plg
文件 5314 2010-10-24 15:58 MyCmd.rc
文件 875 2012-12-25 12:38 MyCmd.sln
文件 10752 2013-09-18 16:54 MyCmd.suo
文件 7292 2012-12-25 12:38 MyCmd.vcproj
文件 10099 2013-09-18 16:52 MyCmdDlg.cpp
文件 1853 2010-10-24 17:21 MyCmdDlg.h
文件 3561 2010-10-24 15:31 ReadMe.txt
文件 532 2010-10-24 15:31 Resource.h
文件 207 2010-10-24 15:31 StdAfx.cpp
文件 1054 2010-10-24 15:31 StdAfx.h
目录 0 2013-03-28 10:55 res\
文件 1078 2010-10-24 15:31 res\MyCmd.ico
文件 397 2010-10-24 15:31 res\MyCmd.rc2
相关资源
- Visual C++ MFC Web 浏览器
- 文件传输,用MFC实现
- MFC漂亮的进度条
- VC++ MFC 如何用 CZip CUnzip类压缩解压缩
- MFC添加进度条
- MFC图元的组合,拆分,移动源代码
- Vc++6.0MFC入门教程,很好的资源。
- VC++6.0 MFC 超简易计算器
- MFC开发的与服务器通讯程序
- 用MFC画直线椭圆矩型可选择线条颜色
- MFC交通灯控制车辆运行的模拟程序
- DES加密算法MFC实现
- MFC 之 TabCtrl
- DES加密和RSA加密程序mfc源代码
- 实现三维坐标变换、投影变换,C++实
- MFC实现文件传输
- 生命游戏 mfc版本 环境vs2008
- MFC CComboBox 实现自动补全
- MFC写的棋盘,可以保存坐标数据
- MFC 菜鸟教程……适合初学者
- MFCdownload
- VC++MFC编程
- 北京浮生记控制台版C++源代码
- OpenGL载入3ds模型并在MFC视图窗口显示
- 用MFC编写的数据包校验与常用校验算
- mfc + d3d实现的视频播放器
- [原创]使用MFC实现文档打印
- MFC GroupBox自绘控件,可以方便改变边
- MFC_unicode相关链接库
- MFC程序开发之多人聊天室
评论
共有 条评论