您的位置:首页 > 移动开发

[转]Convert Win32 Console Application to MFC

2012-04-07 13:21 501 查看
原地址:http://www.codeproject.com/Tips/297862/Convert-Win32-Console-Application-to-MFC Assuming you have Console based application created with MFC support (i.e., you have not chosen MFC support while using New Project Wizard).
In this Tip/Trick, I am not going into detailed steps of how to create a new project and all. I assume you know all these and face a real life problem of adding MFC support to existing applications.
Follow these simple steps and your application will have MFC support.
Here I am using project name as MyApp and IDE is Visual Studio 2008. Open your project. In Project Menus --> Select MyApp Properties(MyApp -> name of my project) In Configuration Properties -> General -> Use of MFC, select Use MFC in a Shared DLL option. Add the following line in your stdafx.h file.
#define _ATL_CSTRING_EXPLICIT_CONSTRUCTORS      // some CString constructors will be explicit

#ifndef VC_EXTRALEAN
#define VC_EXTRALEAN            // Exclude rarely-used stuff from Windows headers
#endif

#include <afx.h>
#include <afxwin.h>         // MFC core and standard components
#include <afxext.h>         // MFC extensions
#ifndef _AFX_NO_OLE_SUPPORT
#include <afxdtctl.h>           // MFC support for Internet Explorer 4 Common Controls
#endif
#ifndef _AFX_NO_AFXCMN_SUPPORT
#include <afxcmn.h>                     // MFC support for Windows Common Controls
#endif // _AFX_NO_AFXCMN_SUPPORT

#include <iostream>

Now your application has MFC support, now you can use any MFC Class, Function or Structure.
Happy programming!
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: