MFC
文章平均质量分 74
eryar
这个作者很懒,什么都没留下…
展开
-
Hello - MFC
/* File : Hello.h*/class CMyApp : public CWinApp {public: virtual BOOL InitInstance();};class CMainWindow : public CFrameWnd {public: CMainWindow();protected: afx_msg void原创 2010-03-21 11:10:00 · 670 阅读 · 0 评论 -
StdAfx.h and StdAfx.cpp
StdAfx.h and StdAfx.cpp------以下内容来自《Programming windows with MFC》AppWizard-generated projects speed program builds by taking advantage of a feature of Visual C++ known as precompiled headers翻译 2010-03-28 00:51:00 · 787 阅读 · 0 评论 -
MFC中的IDs
在MFC或API 32程序中,常常用到一些常量,如菜单中常见的:文件-》新建;文件-》保存;帮助-》关于。。。。。。 这些常见的IDs都可以在头文件afxres.h中找到。你可以用VC++打开它看看就知道有哪些常量可以使用了。:) 以下摘自文件afxres.h: ////////////////////////////////////////////////原创 2010-03-29 22:40:00 · 1959 阅读 · 0 评论 -
MFC中使用控件CEdit创建一个记事本小程序
最近在看《Programming Windows width MFC》,看到第7章,控件的使用。你面先介绍了最经典的6个控件:The Classic Controls=======================================================================Control TypeWNDCLASSMFC Class原创 2010-04-11 22:52:00 · 2662 阅读 · 0 评论 -
Running the MFC AppWizard
Running the MFC AppWizard运行MFC程序向导 1. 创建一个新的工程名为:Shpaes。选择MFC AppWizard(exe),如图4-4所示,接下来是AppWizard的一系列问题。2. 在MFC AppWizard-Step 1对话框中,选择Single Document作为程序类型,不选Docume翻译 2010-04-02 22:09:00 · 653 阅读 · 0 评论 -
MFC中枚举文件和文件夹
MFC中枚举文件和文件夹 MFC中枚举文件或文件夹关键是使用了两个API函数: ::FindFirstFile()和::FindNextFile()。调用这两个函数时都会填写一个数据结构:WIN32_FIND_DATA。 当调用::FindFirstFile()失败后,返回INVALID_HANDLE_VALUE;当调用::FindNextFile()失败后,返回NULL原创 2010-04-09 23:41:00 · 3604 阅读 · 0 评论 -
Removing the Document Name from the Title Bar
<br /> Removing the Document Name from the Title Bar<br />DriveTree doesn't use its document object at all. Its File menu doesn't include document-handling commands. And it doesn't display a document name in its title bar because it doesn't make sense to翻译 2010-06-06 15:26:00 · 714 阅读 · 0 评论