AVG

The developer toolbar looks great - evcept for the fact that every time I open a page from ANY site, I receive an error An unhandled exception (Object doesn't support this jproperty or method) occurred in iexplore.exe[3864].

with the prompt to oopern a debugger.

I had to uninstall the toolbar.

I am running Win XP SP2 and IE6.

Any chance of a fix



Re: Internet Explorer Web Development [IEDevTB]

Hobbes42

Same problem here - although I'm using IE 7 (Version 7.0.5730.11, mshtml.dll 7.0.6000.16441) on Windows XP SP2.

I receive the error "Object does not support this property or method" at the line marked -> below everytime I open a web page:

  function ParseDoc(doc)
  {
    var aRules = GatherRulesFromDoc(doc);
    collSelectors = parser.Parse(aRules);


    // Set quirks mode if necessary
    if("BackCompat" == doc.compatMode)
    {
      for(var i = 0; i < collSelectors.Count; i++)
      {
 ->       collSelectors.item(i).SetQuirksMode(true);
      }
    }


  }




Re: Internet Explorer Web Development [IEDevTB]

Jonathan Hoersch [MSFT]

Thanks for reporting this issue; we will look into it.

In the meantime, you can disable the script debugger when not using it; Tools > Internet Options > Advanced > Disable Script Debugging (both Internet Explorer and Other options).





Re: Internet Explorer Web Development [IEDevTB]

AVG

I tried turning off script debugging and it did not work. Maybe I needed to reboot Even if it did work, it is not a practical solution.

I keep it turned on so that when I develop web projects, I don't publish something with script errors!





Re: Internet Explorer Web Development [IEDevTB]

Wolf373

With "Disable Script Debugging" also the GoogleToolbar is deactivated!



Re: Internet Explorer Web Development [IEDevTB]

primortal

I have the same problem with the IEDevTB (version 1) invoking the script debugger. I had this problem since beta 3.



Re: Internet Explorer Web Development [IEDevTB]

RufusReitz

I get the script error on this line too:
collSelectors.item(i).SetQuirksMode(true);

It happens when I go to google.com. The dev toolbar doesn't show up at all.




Re: Internet Explorer Web Development [IEDevTB]

BradVoy

I'm seeing the same problem with this new release. I did not see it with previous releases. Turning off script debugging is not a viable workaround. I need script debugging on in order to debug the pages I'm developing. So I'm now having to uninstall IEDevTB until this gets fixed.



Re: Internet Explorer Web Development [IEDevTB]

TimeStamp

Same problem here with IE7 and XP SP2.

Microsoft JScript runtime error: Object doesn't support this property or method

function ParseDoc(doc)

{

var aRules = GatherRulesFromDoc(doc);

collSelectors = parser.Parse(aRules);

// Set quirks mode if necessary

if("BackCompat" == doc.compatMode)

{

for(var i = 0; i < collSelectors.Count; i++)

{

collSelectors.item(i).SetQuirksMode(true);

}

}

}





Re: Internet Explorer Web Development [IEDevTB]

Sarah the anonymous

BradVoy wrote:
I need script debugging on in order to debug the pages I'm developing. So I'm now having to uninstall IEDevTB until this gets fixed.

That's my situation as well - I have to just disable the toolbar. I would be thrilled to see a patch for this bug.





Re: Internet Explorer Web Development [IEDevTB]

MaRaNtZ

I would love to use IEDevToolbar, if only it wasn't able to crash my browser after loading any page.... PLEASE, DEVELOPERS, TRACK DOWN THE SetQuirksMode() BUG!!

Too many users are having this issue, please google around. I guess it is something related to Machine Debug Manager (MDM.EXE), i have installed both VS2003 and VS2005 if this can make any difference, and also Office2003 as well.




Re: Internet Explorer Web Development [IEDevTB]

Anonymous_83

When will this be fixed It is very annoying.
I need to have activated the Script debugger for my day to day business.

The solution is very simple:
for(var i = 0; i < collSelectors.Count; i++)
{
if(typeof(collSelectors.item(i).SetQuirksMode != "undefined")
{
collSelectors.item(i).SetQuirksMode(true);
}
}




Re: Internet Explorer Web Development [IEDevTB]

Adam Strzelecki

Here's a recipe how to fix this annoying popup:
http://www.nanoant.com/tweaks/ie-dev-toolbar-annoying-popup-fix

Don't ask me about binaries, as it is against the license.
Cheers

P.S. It is for RTW 1.00.2188.0 not the Beta 3 as I was mentioning previously.




Re: Internet Explorer Web Development [IEDevTB]

Kilkenny

I'm having the exact same bug as everyone else is reporting. Win XP SP2, IE7 (7.0.5730.11), and IEDevTB build 2188.

It's that same SetQuirksMode error. Seriously... try/catch ...

Disabling Script Debugging (both options) does nothing to help the problem. The previous version worked fine for me on the same system and I was getting work done with it - now I don't have any IE dev tool until this get fixed.