资源简介
该程序是用VS2005编写的一个可以解决VS2008(VS2005)与IE8不兼容问题的软件。使用说明请查看:http://hi.baidu.com/anglecloudy/blog/item/fe5ca7593bdf99222934f015.html
代码片段和文件信息
// IE8AddZone.cpp : Defines the class behaviors for the application.
//
#include “stdafx.h“
#include “IE8AddZone.h“
#include “IE8AddZoneDlg.h“
#ifdef _DEBUG
#define new DEBUG_NEW
#endif
// CIE8AddZoneApp
BEGIN_MESSAGE_MAP(CIE8AddZoneApp CWinApp)
ON_COMMAND(ID_HELP &CWinApp::onhelp)
END_MESSAGE_MAP()
// CIE8AddZoneApp construction
CIE8AddZoneApp::CIE8AddZoneApp()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}
// The one and only CIE8AddZoneApp object
CIE8AddZoneApp theApp;
// CIE8AddZoneApp initialization
BOOL CIE8AddZoneApp::InitInstance()
{
// InitCommonControlsEx() is required on Windows XP if an application
// manifest specifies use of ComCtl32.dll version 6 or later to enable
// visual styles. Otherwise any window creation will fail.
INITCOMMONCONTROLSEX InitCtrls;
InitCtrls.dwSize = sizeof(InitCtrls);
// Set this to include all the common control classes you want to use
// in your application.
InitCtrls.dwICC = ICC_WIN95_CLASSES;
InitCommonControlsEx(&InitCtrls);
CWinApp::InitInstance();
AfxEnableControlContainer();
// Standard initialization
// If you are not using these features and wish to reduce the size
// of your final executable you should remove from the following
// the specific initialization routines you do not need
// Change the registry key under which our settings are stored
// TODO: You should modify this string to be something appropriate
// such as the name of your company or organization
SetRegistryKey(_T(“Local AppWizard-Generated Applications“));
CIE8AddZoneDlg dlg;
m_pMainWnd = &dlg;
INT_PTR nResponse = dlg.DoModal();
if (nResponse == IDOK)
{
// TODO: Place code here to handle when the dialog is
// dismissed with OK
}
else if (nResponse == IDCANCEL)
{
// TODO: Place code here to handle when the dialog is
// dismissed with Cancel
}
// Since the dialog has been closed return FALSE so that we exit the
// application rather than start the application‘s message pump.
return FALSE;
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 2136 2009-03-24 11:41 IE8AddZone\IE8AddZone\IE8AddZone.cpp
文件 528 2009-03-24 11:41 IE8AddZone\IE8AddZone\IE8AddZone.h
文件 8543 2009-03-24 15:01 IE8AddZone\IE8AddZone\IE8AddZone.rc
文件 5521 2009-03-24 12:02 IE8AddZone\IE8AddZone\IE8AddZone.vcproj
文件 9726 2009-03-24 14:32 IE8AddZone\IE8AddZone\IE8AddZoneDlg.cpp
文件 1250 2009-03-24 14:32 IE8AddZone\IE8AddZone\IE8AddZoneDlg.h
文件 4093 2009-03-24 11:41 IE8AddZone\IE8AddZone\ReadMe.txt
文件 21630 2005-08-12 15:37 IE8AddZone\IE8AddZone\res\IE8AddZone.ico
文件 401 2009-03-24 11:41 IE8AddZone\IE8AddZone\res\IE8AddZone.rc2
文件 1450 2009-03-24 14:31 IE8AddZone\IE8AddZone\resource.h
文件 210 2009-03-24 11:41 IE8AddZone\IE8AddZone\stdafx.cpp
文件 2864 2009-03-24 11:41 IE8AddZone\IE8AddZone\stdafx.h
文件 260 2009-03-25 10:24 IE8AddZone\IE8AddZone.gpState
文件 1045 2009-03-24 11:42 IE8AddZone\IE8AddZone.sln
..A..H. 68608 2009-03-25 10:24 IE8AddZone\IE8AddZone.suo
文件 61440 2009-03-24 15:01 IE8AddZone\release\IE8AddZone.exe
目录 0 2009-03-24 11:41 IE8AddZone\IE8AddZone\res
目录 0 2009-03-25 19:01 IE8AddZone\IE8AddZone
目录 0 2009-03-25 19:01 IE8AddZone\release
目录 0 2009-03-25 19:01 IE8AddZone
----------- --------- ---------- ----- ----
189705 20
- 上一篇:使用HTML+CSS实现静态个人主页
- 下一篇:一个Html静态页面查IP地理位置
评论
共有 条评论