Microsoft KB Archive/929068

From BetaArchive Wiki
< Microsoft KB Archive
Revision as of 10:25, 21 July 2020 by X010 (talk | contribs) (Text replacement - ">" to ">")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Knowledge Base


Error message when Internet Explorer 6 uses a DHTML Edit control: "R6052 pure virtual function call"

Article ID: 929068

Article Last Modified on 5/16/2007



APPLIES TO

  • Microsoft Internet Explorer 6.0



SYMPTOMS

When you host a Dynamic HTML (DHTML) Edit control, Microsoft Internet Explorer 6 or another application that uses the control crashes. Additionally, you receive the following error message:

R6052 pure virtual function call

This problem occurs if the following conditions are true:

  • You loaded a page that uses the JavaServer pages (jsp) namespace.
  • The page calls the ShowDetails method of the control.


RESOLUTION

A hotfix for this problem is included in the Internet Explorer 6 update that was released in December 2006. To obtain this hotfix, visit the following Microsoft Web site:

WORKAROUND

To work around this problem, use one of the following methods:

  • Do not use the xmlns:jsp="" namespace.
  • Use the “Safe for Scripting” version of the control for computers that are running Internet Explorer 6.

    Note Internet Explorer 7 sets the "kill" bit for the "Safe for Scripting" version of the control. However, a separate installation of the DHTML Editing Control for Applications component is available for Windows Vista. This separate installation provides compatibility for Windows applications that may rely on this control. To download the DHTML Editing Control for Applications component that is available for Windows Vista, visit the following Microsoft Web site:

    For more information about how to set the "kill" bit for an ActiveX control, click the following article number to view the article in the Microsoft Knowledge Base:

    240797 How to stop an ActiveX control from running in Internet Explorer

  • Do not use existing DHTML Edit controls. Instead, use MSHTML Editing to achieve the desired functionality. For more information about MSHTML Editing, visit the following Microsoft Web site:


MORE INFORMATION

The following sample HTML page and Test.txt file will generate this problem.

Sample HTML page

<HTML>

<HEAD>

<META NAME="GENERATOR" Content="Microsoft Visual Studio 6.0">

<TITLE></TITLE>

<script>

function test()

{

            DHTMLEdit1.LoadURL("http://server/test.txt");  DHTMLEdit1.ShowDetails = true; 

}

</script>

</HEAD>

<BODY>

<OBJECT id=DHTMLEdit1 style="LEFT: 0px; WIDTH: 256px; TOP: 0px; HEIGHT: 233px" 

classid=clsid:2D360200-FFF5-11D1-8D03-00A0C959BC0A VIEWASTEXT></OBJECT>

<BUTTON onclick=test()>Click</BUTTON>

</BODY>

</HTML>

Sample Test.txt file

<HTML xmlns:jsp="">
<BODY designMode=on>
 <jsp:Comment></jsp:Comment> 
 <jsp:Comment></jsp:Comment> 
 <jsp:Comment></jsp:Comment> 
 <jsp:Comment></jsp:Comment> 
 <jsp:Comment></jsp:Comment> 
 <jsp:Comment></jsp:Comment> 
 <jsp:Comment></jsp:Comment> 
 <jsp:Comment></jsp:Comment> 
 <jsp:Comment></jsp:Comment> 
 <jsp:Comment></jsp:Comment> 
 <jsp:Comment></jsp:Comment>
 <DIV> 
  <DIV> 
   <DIV> 
    <DIV style="float:right; vertical-align: middle;margin-top:1px"> 
    </DIV> 
   </DIV> 
  </DIV> 
  <DIV style="height:64%; overflow-y:scroll;"> 
  </DIV> 
   
 </DIV>

Keywords: kbtshoot kberrmsg kbbug kbprb KB929068