vs2008 MFC工程建立
願雞湯成為你前進的動力,願夢想使你持之以恆,而非一時熱血
本文總結了VS如何區建立MFC工程的步驟。
MFC,全稱Microsoft Foudation Classes,是一種application framework,以VC++封裝了windows API 的開發工具。
具體詳細使用步驟:
1.Open VS2008,
2.File->New->Project:
As picture:
Visual C++ ->MFC->MFC Application
Enter project name, select location.
Next:
Select dialog based & Use MFC in a static library.
Next or finlish.
It will show interface as picture below
We can drag a key to UI,for example:
Double Click the key in UI
Input the code
MessageBox指的是顯示一個模態對話方塊,其中包含一個系統圖示、 一組按鈕和一個簡短的特定於應用程式訊息,如狀態或錯誤的資訊。訊息框中返回一個整數值,該值指示使用者單擊了哪個按鈕。
----From Baidu Baike
Build project:
Build error, Error
error C2664: 'CWnd::MessageBoxW' : cannot convert parameter 1 from 'const char [3]' to 'LPCTSTR' e:\vs2008\test1\test1\test1\test1dlg.cpp 155 test1
solution:project->properties->configuration properties->character set->use multi-Byte character set
It’s OK.
Location:target folder/debug/<project_name>.exe