我为发布这个问题而道歉, 当我编译时,我收到错误
fatal error C1083: Cannot open include file : 'afxwin.h' : No such file or directory
非常感谢你能伸出援助之手。
代码:
#if !defined(AFX_STDAFX_H__39403C06_D7D2_4132_9BC8_80C5C886FB8B__INCLUDED_)
#define AFX_STDAFX_H__39403C06_D7D2_4132_9BC8_80C5C886FB8B__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
#define VC_EXTRALEAN // Exclude rarely-used stuff from Windows headers
#include <afxwin.h> // MFC core and standard components
#include <afxext.h> // MFC extensions
#include <afxdisp.h> // MFC Automation classes
#include <afxdtctl.h> // MFC support for Internet Explorer 4 Common Controls
#ifndef _AFX_NO_AFXCMN_SUPPORT
#include <afxcmn.h> // MFC support for Windows Common Controls
#endif // _AFX_NO_AFXCMN_SUPPORT
#include <afxsock.h> // MFC socket extensions
//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.
#endif // !defined(AFX_STDAFX_H__39403C06_D7D2_4132_9BC8_80C5C886FB8B__INCLUDED_)
答案 0 :(得分:2)
Visual Studio Express不包含MFC类。
您将无法使用Visual Studio Express构建此应用程序。
答案 1 :(得分:2)
afxwin.h
为MFC,MFC未包含在VC ++(Express Edition)的免费版本中。
构建此应用程序的唯一解决方案是传递专业版。
答案 2 :(得分:0)
为从谷歌偶然发现的其他人添加更多信息:
对于我安装Visual Studio,它正在编译MFC就好了,然后突然停了下来。事实证明我的projectname32v5.vcproj
文件已被破坏(此文件包含特定于此项目的包含路径)。从我的版本控制系统恢复此文件的先前版本修复了构建。