搜索资源列表
VC++(MFC)Face
- 说明: 1.copy these four files to your pragram folder, 2.add \"*.Lib\",\"*.h\" to the project if USING MFC DLL, the files in \"DLL\" Folder, if using static lib,the files in \"static\" folder 3.add #include\"S
ADODataBase1
- 生成应用程序框架并初始化OLE/COM库环境 创建一个标准 的MFC AppWizard(exe)应用程序,然后在使用ADO数据库的InitInstance函数中初始-generation application fr a mework and initialization OLE / COM library environment to create a standard MFC AppW izard (exe) applicatio
OpenRecentFile
- VC应用程序通过APP的InitInstance函数进行初始化,生成新文档和打开文件的操作都可以在此函数中实现。要让应用程序一启动就打开最近使用的文档,只需要将下面代码添加到APP的InitInstance函数中,放在ParseCommandLine和ProcessShellCommand之间。 -VC application by the APP InitInstance function initialization, Gene
hookapplication
- 编译顺序: 1、GlobalHook 2、将编译好的GlobalHook.lib拷贝到Savekey目录下编译 使用时将GlobalHook.dll和Savekey.exe放在同一目录。该程序运行后*面,在InitInstance函数中使用了自己的消息循环,随时记录键盘的输入字符,累加存放在c:\\\\windows\\\\Key_年_月.log文件中,每分钟检查一次该文件,当检测到有“inter2020”字符串时,
Skin++-Bcg64-Source
- 在(VC7)\"项目->属性->链接器->输入->附加依赖项\"中加入SkinPlusPlusDLL.lib 或 在(VC6)\"Project->Settings->Link->Object/library\"中加入SkinPlusPlusDLL.lib 2.在你的程序中包含头文件 #inlcude \"SkinPlusPlus.h\" 3.在程序中加入初始化语句InitInstance()
电表645
- // dianbiao645.h : main header file for the DIANBIAO645 application // #if !defined(AFX_DIANBIAO645_H__EF43A0BD_87CA_4963_B57A_57851872D28C__INCLUDED_) #define AFX_DIANBIAO645_H__EF43A0BD_87CA_4963_B57A_57851872D28C
Skin++-Bcg64-Source
- 在(VC7)"项目->属性->链接器->输入->附加依赖项"中加入SkinPlusPlusDLL.lib 或 在(VC6)"Project->Settings->Link->Object/library"中加入SkinPlusPlusDLL.lib 2.在你的程序中包含头文件 #inlcude "SkinPlusPlus.h" 3.在程序中加入初始化语句InitInstance() Initia
VC++(MFC)Face
- 说明: 1.copy these four files to your pragram folder, 2.add "*.Lib","*.h" to the project if USING MFC DLL, the files in "DLL" Folder, if using static lib,the files in "static" folder 3.add #include"SkinMagicL
ADODataBase1
- 生成应用程序框架并初始化OLE/COM库环境 创建一个标准 的MFC AppWizard(exe)应用程序,然后在使用ADO数据库的InitInstance函数中初始-generation application fr a mework and initialization OLE/COM library environment to create a standard MFC AppW izard (exe) applications
OpenRecentFile
- VC应用程序通过APP的InitInstance函数进行初始化,生成新文档和打开文件的操作都可以在此函数中实现。要让应用程序一启动就打开最近使用的文档,只需要将下面代码添加到APP的InitInstance函数中,放在ParseCommandLine和ProcessShellCommand之间。 -VC application by the APP InitInstance function initialization, Gene
hookapplication
- 编译顺序: 1、GlobalHook 2、将编译好的GlobalHook.lib拷贝到Savekey目录下编译 使用时将GlobalHook.dll和Savekey.exe放在同一目录。该程序运行后*面,在InitInstance函数中使用了自己的消息循环,随时记录键盘的输入字符,累加存放在c:\\windows\\Key_年_月.log文件中,每分钟检查一次该文件,当检测到有“inter2020”字符串时,将前面的
OneInstantance
- 让程序只运行一个实例的简单实用的方法,首先在InitInstance()函数中创建一个同步对象,如果(GetLastError()返回ERROR_ALREADY_EXISTS就表明存在 -Allow to run only one instance of the simple and practical method, first of all, in the InitInstance () function to create a
wdpmwj
- // Overrides // ClassWizard generated virtual function overrides //{{AFX_VIRTUAL(CTestReportApp) public: virtual BOOL InitInstance() //}}AFX_VIRTUAL
DockWin
- class CDockWinApp : public CWinApp { public: CDockWinApp() // Overrides // ClassWizard generated virtual function overrides //{{AFX_VIRTUAL(CDockWinApp) public: virtual BOOL InitInstance()
SingleInstance
- This sample code is for the creating MFC single instance application.Include this code in InitInstance function.
Richedit
- a.可以编译,不能执行的 AfxInitRichEdit() b.升级默认的Riched版本(默认的有一些bug),如 可在InitInstance中添加 LoadLibrary("RICHED20.DLL") 最后注意 FreeLibrary 如果是CRichEditView基类的可用 BOOL CXXXXXXView::PreCreateWindow(CREATESTRUCT& cs) { /
ChangingDesktop
- 设置桌面背景, (1)使用ChangingDesktop需要包含的一些头文件,以及进行初始化 在stdafx.h中 #include <afxwin.h> #include <wininet.h> //添加这个。注意顺序,顺序乱了也编译不过 #include <afxext.h> 用了com的东西,要进行初始化,不用说了吧。 在CXXXApp::Initinst
ADO
- 创建一个标准的MFC AppWizard(exe)应用程序,然后在使用ADO数据库的InitInstance函数中初始化OLE/COM库(因为ADO库是一个COM DLL库)。
gd
- 自己建立一个基于MFC的程序,并能对鼠标左键单击操作进行响应(弹出消息框)。 在程序编写过程中注意以下几点: (1) 建立工程的类型(Win32 Application)及需要包含的头文件(afxwin.h) (2) 从CWinApp派生自己应用程序类,从Cfr a meWnd派生自己框架窗口类 (3) 注意程序的构建过程:从应用程序类对象开始,调用基类构造函数,在其中调用InitInstance(),因其为虚函数
OnlyOneInst
- mfc 基于对话框程序,只能打开一个程序- BOOL COnlyOneInstApp::InitInstance() { if (!FirstInstance()) return FALSE //已经有实例存在了,退出 //根据主窗口类名和主窗口名判断是否已经有实例存在了 if (pWndPrev = CWnd::FindWindow(_T("#32770"),"OnlyOne