• 大小: 43KB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-05-10
  • 语言: C/C++
  • 标签: VS2008  IE8  脚本错误  

资源简介

网上下载的 直接运行里面Release文件夹里面的EXE文件,然后 关闭VS2008(已经打开的话),再重启即可

资源截图

代码片段和文件信息

// 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.cpp

     文件        528  2009-03-24 11:41  IE8AddZone\IE8AddZone.h

     文件       8543  2009-03-24 15:01  IE8AddZone\IE8AddZone.rc

     文件       5521  2009-03-24 12:02  IE8AddZone\IE8AddZone.vcproj

     文件       9726  2009-03-24 14:32  IE8AddZone\IE8AddZoneDlg.cpp

     文件       1250  2009-03-24 14:32  IE8AddZone\IE8AddZoneDlg.h

     文件       4093  2009-03-24 11:41  IE8AddZone\ReadMe.txt

     文件      21630  2005-08-12 15:37  IE8AddZone\res\IE8AddZone.ico

     文件        401  2009-03-24 11:41  IE8AddZone\res\IE8AddZone.rc2

     文件       1450  2009-03-24 14:31  IE8AddZone\resource.h

     文件        210  2009-03-24 11:41  IE8AddZone\stdafx.cpp

     文件       2864  2009-03-24 11:41  IE8AddZone\stdafx.h

     文件      61440  2009-03-24 15:01  release\IE8AddZone.exe

     文件        260  2009-03-25 10:24  IE8AddZone.gpState

     文件       1045  2009-03-24 11:42  IE8AddZone.sln

     目录          0  2009-03-24 11:41  IE8AddZone\res

     目录          0  2009-03-25 19:01  IE8AddZone

     目录          0  2009-03-25 19:01  release

----------- ---------  ---------- -----  ----

               121097                    18


评论

共有 条评论