WinXP SP2+VS2003+DDK 2600+ddkwizard1.2.0a
在VS2003里添加了ddkbuild.bat的目录以后,创建驱动文件的时候出现了这个,点“是”或“否”都不能继续下去,这个问题该怎么解决啊? 
因为不知道是不是网页解析方面出了问题,所以发到这里来请各位看看,这个帖子还有这里也有,有高人解决的话请把两个帖子的分都拿走·
http://topic.csdn.net/u/20090112/03/1073a44a-0296-4681-ba38-c4cfe9df3832.html?seed=1865367465

解决方案 »

  1.   

    那个出错的default.htm的内容[由于内容长度超过CSDN限制,完整htm文件在这里http://blogimg.chinaunix.net/blog/upfile2/090113025632.rar
    function InitDocument(document)
    {
        try
        {
            setDirection();
        }
        catch(e)
        {
        }    if (window.external.FindSymbol('DOCUMENT_FIRST_LOAD'))
        {
            // This function sets the default symbols based
            // on the values specified in the SYMBOL tags above
            //
            window.external.SetDefaults(document);
        }    // Load the document and initialize the controls
        // with the appropriate symbol values
        //
        window.external.Load(document);    // Extract version number of VS/VC (or whatever we are running on)
        var sVersion = window.external.dte.Version;
        var iVersion = 1;
        iVersion *= sVersion.substr(0, sVersion.indexOf(".")); // as a number    // Override the defaults
        try
        {
            DDKWizard_OverrideDefaults(iVersion, GetInstallFilePath_());
        }
        catch(e)
        {
            window.alert("Could not fetch default settings from INI file: " + e.description);
        }    // Check for minimum version to support property sheets
        if(iVersion < 8)
        {
            var elem = document.getElementById('VS_2005_COMPAT');
            elem.style.display = "inline";
            // Property sheets only work on version 8 and later for now
            // TODO: possibly adapt to later versions
            elem = document.getElementById('PROPERTYSHEET_CHECKBOX');
            elem.checked = false;
            elem.disabled = true;
            PropertySheetCheckbox(elem);
        }
        Bitness64Checkboxes();
        PrefastCheckboxes();
        if(window.external.FindSymbol('WIZARD_NAME') == "EmptyDrv")
        {
            EnDisAbleAllOverrideCheckboxes();
            HideSuperfluousControls();
        }
        else
        {
            EnDisAbleAllOverrideCheckboxes();
            OnClickAutoIncCheckbox(document.getElementById('AUTOINCBUILDNR_CHECKBOX'));
        }
        document.getElementById('subhead').innerHTML = "This wizard creates a <span style='color:#006000; font-weight:bold;'>" + window.external.FindSymbol('WIZARD_NAME') + "</span> project for DDKBUILD (from <a href=\"http://www.osronline.com/article.cfm?article=43\" onclick=\"OnClickLink(this);\" target=\"_blank\">OSR</a>) and the specified DDK";
        document.getElementById('SUBHEAD_IMAGE').src = "../../Images/" + window.external.FindSymbol('WIZARD_NAME') + ".gif";
        window.dialogArguments = ""
    }// If the wizard has more than 1 page, this
    // function will browse to the page specified
    //
    function Next(document, linkto)
    {
        window.external.Next(document, linkto);    //全文第536行
    }// This is an example of a function which
    // gets called when the user clicks on 'Finish'
    //
    function OnFinish(document)
    {
        OnWizFinish(document);
    }</script>
    <script id="INCLUDE_SCRIPT" language="jscript" type="text/javascript"></script>
    <script id="INCLUDE_COMMON" language="jscript" type="text/javascript"></script>
    <script id="INCLUDE_DDKWIZARD" language="jscript" type="text/javascript"></script>
    <!--
    Common.js is a script file which contains the helper functions
    used by the wizards.  Include this line if you want to
    call these functions from your html scripts.
    //-->
    <script language="jscript" type="text/javascript">
        var strPath = window.external.FindSymbol("PRODUCT_INSTALLATION_DIR");
        strPath += "VCWizards/";
    //    var strDDKWizScript = strPath + "/DDKWizard/DDKWizIniFile.js";
        strPath += window.external.GetHostLocale();
        var strScriptPath = strPath + "/Script.js";
        var strCommonPath = strPath + "/Common.js";
        document.scripts("INCLUDE_SCRIPT").src = strScriptPath;
        document.scripts("INCLUDE_COMMON").src = strCommonPath;
        // Path to our own script
        document.scripts("INCLUDE_DDKWIZARD").src = GetInstallFilePath_()+"\\DDKWizIniFile.js";
    </script>
    </body>
    </html>
      

  2.   

    Try it~~!function Next(document, linkto)
    {
       window.external.AddSymbol("DOCUMENT_FIRST_LOAD", true);
       window.external.Next(document, linkto);
    }