473,387 Members | 1,624 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,387 software developers and data experts.

MS Treeview from ASP issue after IE ActiveX update (kb912945)

Hi there,

I have an ASP page using the treeview control from mscomctl.ocx that
was running just fine. We updated our browsers with this package (
details at http://support.microsoft.com/kb/912945/en-us) so I get
"Unhandled exception at 0x275888cf in IEXPLORE.EXE: 0xC0000005: Access
violation writing location 0x0000000b."
The other mscomctl.ocx's controls (ListView, MonthView, ImageList...)
are still working fine.
that's the code:
<OBJECT id=tvwPasta
classid="clsid:C74190B6-8589-11D1-B16A-00C0F0283628" width="100%"

height="235"
CODEBASE="http://<myserver>/mscomctl.cab#Version=6,1,97,82"
viewastext>
<PARAM NAME="_ExtentX" VALUE="7303">
<PARAM NAME="_ExtentY" VALUE="6138">
<PARAM NAME="_Version" VALUE="393217">
<PARAM NAME="HideSelection" VALUE="1">
<PARAM NAME="Indentation" VALUE="700">
<PARAM NAME="LabelEdit" VALUE="1">
<PARAM NAME="LineStyle" VALUE="1">
<PARAM NAME="PathSeparator" VALUE="">
<PARAM NAME="Sorted" VALUE="0">
<PARAM NAME="Style" VALUE="7">
<PARAM NAME="ImageList" VALUE="">
<PARAM NAME="BorderStyle" VALUE="0">
<PARAM NAME="Appearance" VALUE="1">
<PARAM NAME="MousePointer" VALUE="0">
<PARAM NAME="Enabled" VALUE="1">
<PARAM NAME="OLEDragMode" VALUE="0">
<PARAM NAME="OLEDropMode" VALUE="0">
</OBJECT>
Any idea? Thanks in advance for any help.
Sonny.

Apr 3 '06 #1
4 4758
Sonny,

I had a similar problem and was advised to clear my cache, history etc and
restore IE to defaults. This fixed it after restarting. XP.

I think the actual problem is if you have Disable Script Debugging unchecked
in your Advanced settings. The download page
(http://support.microsoft.com/default...b;en-us;912945) has a
section which says

"External script technique does not work when the "Disable Script Debugging
(Internet Explorer)" check box is cleared"

but does not make clear that it will crash IE.

Regards,

Richard
Apr 6 '06 #2
Hi Sonny,

I had the same problem. I try to clear cache, history and so on, but IE
crash continuosly. I try uninstall the KB912945 (Control Panels -->
Add/Remove Installed Programs (check the "Show Updates")) and problem solved.

But I don't know, how I fix this problem on the customes computers ... :o(.

Martin.
Apr 7 '06 #3
Had the same issue when I installed KB912945. MSCOMCTL.OCX failed. Uninstalled and it worked. Here is the work around I put in place to solve the issue with KB912945 installed:

I but the Treeview in a <div id="div1" style="DISPLAY: none">, then set the div to block, div1.Style.Display="block", in the Window_OnLoad() event. This solves the IE Crash.

Also, I had to write a script to activate the controls on load. So I added this just before the </BODY> tag:

<!-- Fix for IE Patch 912945 -->
<script language="JavaScript" src="ActivateActiveXControls.js"></script>
</BODY>

And here are the contents of the script:

function fnRewriteElements(strTagName)
{
var elements = document.getElementsByTagName(strTagName);
for (var i = 0; i < elements.length; i++)
{
elements[i].outerHTML = elements[i].outerHTML;
}
}

function fnActivateControls()
{
fnRewriteElements('object');
fnRewriteElements('applet');
fnRewriteElements('embed');
}

// Some pages may require a pause before this script
// is executed. This is required if the controls take
// longer to load then the page. If that is the case
// use the following method to create a pause before
// the script is executed.
//window.setTimeout("fnActivateControls()", 50);

// Comment this out if you are using the setTimeout() method.
fnActivateControls();


Works like a champ now.
Apr 20 '06 #4
Had the same issue when I installed KB912945. MSCOMCTL.OCX failed.
Uninstalled and it worked. Here is the work around I put in place to solve
the issue with KB912945 installed:

I but the Treeview in a <div id="div1" style="DISPLAY: none">, then set the
div to block, div1.Style.Display="block", in the Window_OnLoad() event. This
solves the IE Crash.

Also, I had to write a script to activate the controls on load. So I added
this just before the </BODY> tag:

<!-- Fix for IE Patch 912945 -->
<script language="JavaScript" src="ActivateActiveXControls.js"></script>
</BODY>

And here are the contents of the script:

function fnRewriteElements(strTagName)
{
var elements = document.getElementsByTagName(strTagName);
for (var i = 0; i < elements.length; i++)
{
elements[i].outerHTML = elements[i].outerHTML;
}
}

function fnActivateControls()
{
fnRewriteElements('object');
fnRewriteElements('applet');
fnRewriteElements('embed');
}

// Some pages may require a pause before this script
// is executed. This is required if the controls take
// longer to load then the page. If that is the case
// use the following method to create a pause before
// the script is executed.
//window.setTimeout("fnActivateControls()", 50);

// Comment this out if you are using the setTimeout() method.
fnActivateControls();
Works like a champ now.
Apr 20 '06 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
by: HarryD | last post by:
Hello, Maybe someone can help? According to ms kb-article 183329 i am trying to populate a treeview object on a asp-page, with realtime data from a accessdatabase. The database routine works...
1
by: Access User | last post by:
I'm looking for complete documentation for the activex component "TreeView" in Access. I need a complete list of methods and properties, if such a thing exists. Paul
42
by: lauren quantrell | last post by:
So many postings on not to use the treeview control, but nothing recently. Is it safe to swim there yet with Access 2000-Access 2003?
0
by: Mike Preston | last post by:
Warning - long message. Many thanks for making the A97 version of the treeview w/o activex controls available. I have taken it down a different path and ended up doing almost everything...
0
by: imassadpk | last post by:
Hi all, Apprecite your help in resolving this tricky issue... I am trying implementing Recurrsive TreeView in MS. Access 2003 ADP project. So far, no luck :( The Problem: This sample...
5
by: Charlie | last post by:
Hi: I would like to implement a TreeView Control in a web page. Is this done with scripting or does it require an ActiveX control? Can someone point me in right direction? Thanks, Charlie
3
by: Jeffery Franzen | last post by:
Anyone know where the documentation is regarding Activex controls in asp web forms? I'm using VS.NET 2002 enterprise and am trying to use Activex controls in vb.net web form app. I do the add...
2
by: Tymbow | last post by:
I'm building a web application that is analogous to the Windows XP file explorer in function. The left column contains a TreeView, and the right column a DataGrid populated by selecting TreeView...
4
by: Martin | last post by:
I have a treeview control, which is docked on a panel. When I call the procedure to fill this treeview from the load event it works fine. It loads all nodes, and displays them nicely. However,...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.