怎样在C++ 控制台程序上使用MFC中的类
展开全部
随便建立一个MFC的工程,就会在stdafx.h中发现如下文件包含
1
2
3
4
5
6
7
8
9
10
11
#define _AFX_ALL_WARNINGS
#include <afxwin.h> // MFC 核心组件和标准组件
#include <afxext.h> // MFC 扩展
#include <afxdisp.h> // MFC 自动化类
//#include <afxsock.h> // MFC 套接字扩展
#pragma warning(disable : 4996 4244 4800 4018 4345)
#ifndef _AFX_NO_OLE_SUPPORT
#include <afxdtctl.h> // MFC 对 Internet Explorer 4 公共控件的支持
#endif
#ifndef _AFX_NO_AFXCMN_SUPPORT
还不行,就多建几个不同种类的MFC工程,多查看下具体包含了那些库和头文件。
1
2
3
4
5
6
7
8
9
10
11
#define _AFX_ALL_WARNINGS
#include <afxwin.h> // MFC 核心组件和标准组件
#include <afxext.h> // MFC 扩展
#include <afxdisp.h> // MFC 自动化类
//#include <afxsock.h> // MFC 套接字扩展
#pragma warning(disable : 4996 4244 4800 4018 4345)
#ifndef _AFX_NO_OLE_SUPPORT
#include <afxdtctl.h> // MFC 对 Internet Explorer 4 公共控件的支持
#endif
#ifndef _AFX_NO_AFXCMN_SUPPORT
还不行,就多建几个不同种类的MFC工程,多查看下具体包含了那些库和头文件。
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询