Help and Support

Internet Explorer Does Not Apply an Updated Global Style Sheet Through GetHostInfo

Article ID:328803
Last Review:November 15, 2007
Revision:1.4
This article was previously published under Q328803
On This Page

SYMPTOMS

When you specify a global style sheet by using the IDocHostUIHandler::GetHostInfo implementation in an application that hosts the Web browser control, the global style sheet cannot be changed after it has been applied the first time.

Back to the top

CAUSE

MSHTML only updates its internal global style sheet when the style sheet is first created.

Back to the top

RESOLUTION

A supported hotfix is now available from Microsoft. However, this hotfix is intended to correct only the problem that is described in this article. Apply this hotfix only to systems that are experiencing this specific problem. This hotfix might receive additional testing. Therefore, if you are not severely affected by this problem, we recommend that you wait for the next service pack that contains this hotfix.

To resolve this problem, submit a request to Microsoft Online Customer Services to obtain the hotfix. To submit an online request to obtain the hotfix, visit the following Microsoft Web site:
http://go.microsoft.com/?linkid=6294451 (http://go.microsoft.com/?linkid=6294451)
Note If additional issues occur or any troubleshooting is required, you might have to create a separate service request. The usual support costs will apply to additional support questions and issues that do not qualify for this specific hotfix. To create a separate service request, visit the following Microsoft Web site:
http://support.microsoft.com/contactus/?ws=support (http://support.microsoft.com/contactus/?ws=support)


The English version of this fix has the file attributes (or later) that are listed in the following table. The dates and times for these files are listed in coordinated universal time (UTC). When you view the file information, it is converted to local time. To find the difference between UTC and local time, use the Time Zone tab in the Date and Time tool in Control Panel.
   Date      Time     Version       Size       File name
   -------------------------------------------------------
   03-Oct-02 13:14    6.0.2722.300  2,763,264  Mshtml.dll
				

Back to the top

STATUS

Microsoft has confirmed that this is a problem in Microsoft Internet Explorer 6.

Back to the top

MORE INFORMATION

This problem occurs only after MSHTML is initialized. This means that if you open a non-MSHTML document (such as a Microsoft Word document or any other type of active document server document), the next time you open an HTML file, MSHTML reinitializes the global style sheet with what is provided in the IDocHostUIHandler::GetHostInfo implementation.

Back to the top

Steps to Reproduce the Problem

1.In Visual Studio .NET, create a Microsoft Foundation Classes (MFC) Single Document Interface (SDI) CHtmlView application.
2.Add a member variable to the view class that will hold the current global style sheet:
class CMFCTestView : public CHtmlView
{
...
	LPWSTR m_pZoom;
...
};
3.Initialize the member variable to the initial style sheet that you want in the constructor:
CMFCTestView::CMFCTestView()
{
	m_pZoom = L"BODY{Zoom:200%;}";
}
4.Override the OnGetHostInfo virtual function of CHtmlView to implement the code to apply the global style sheet through the GetHostInfo method. IDocHostUIHandler::GetHostInfo is implemented in CHtmlControlSite and calls the method that OnGetHostInfo uses in the view.
// header file
class CMFCTestView : public CHtmlView
{
...
virtual HRESULT OnGetHostInfo(DOCHOSTUIINFO *pInfo);
...
};

// implementation file
HRESULT CMFCTestView::OnGetHostInfo(DOCHOSTUIINFO *pInfo)
{
	pInfo->pchHostCss = (LPWSTR)::CoTaskMemAlloc((lstrlenW(m_pZoom)+1)*2);
	lstrcpyW(pInfo->pchHostCss, m_pZoom);
	return S_OK;
}
5.Add a menu item and its handler to the CHTMLView derived class. In the menu handler, call the IWebBrowser2::Refresh() method. IWebBrowser2::Refresh() applies the new global style sheet to the active Web page.
void CMFCTestView::OnActionTest()
{
	m_pZoom = L"BODY{Zoom:50%;}";
	m_pBrowserApp->Refresh();
}
6.Update the OnInitialUpdate method of the view to point to your test HTML page:
void CMFCTestView::OnInitialUpdate()
{
	CHtmlView::OnInitialUpdate();
	Navigate2(_T("http://myserver/mytestpage.htm"),NULL,NULL);
}
7.Build and run the application. When the page is first displayed, everything appears magnified by 200 percent.
8.Use the menu action that you added to apply the new style. Without the hotfix, the page refreshes, but the magnification remains the same. After you apply the hotfix, the page refreshes and appears with the 50 percent magnification.

Back to the top


APPLIES TO
Microsoft Internet Explorer (Programming) 6.0

Back to the top

Keywords: 
kbhotfixserver kbqfe kbwebbrowser kbhtml kbie600sp2fix kbie600presp2fix kbfix kbbug KB328803

Back to the top

Article Translations

 

Other Support Options

  • Contact Microsoft
    Phone Numbers, Support Options and Pricing, Online Help, and more.
  • Customer Service
    For non-technical assistance with product purchases, subscriptions, online services, events, training courses, corporate sales, piracy issues, and more.
  • Newsgroups
    Pose a question to other users. Discussion groups and Forums about specific Microsoft products, technologies, and services.