Tagged Questions

MSHTML was introduced in Microsoft Internet Explorer 4.0. It is the main HTML component of the Internet Explorer browser and can be used in other applications. It hosts Microsoft ActiveX Controls and supports the OLE Control '96 (OC96) specification for windowless controls.

learn more… | top users | synonyms

8
votes
9answers
9k views

Blocking dialogs in .NET WebBrowser control

I have a .NET 2.0 WebBrowser control used to navigate some pages with no user interaction (don't ask...long story). Because of the user-less nature of this application, I have set the WebBrowser ...
6
votes
3answers
346 views

How to render HTML element without using web browser?

Is there a way how to draw specific HTML element content on a canvas without using any web browser control ? With this code I'm rendering the element to the form's canvas (just as an example). It ...
6
votes
2answers
126 views

ITravelLogStg::TravelTo fails with error 0x80004002

I have these two methods to get the current travel log entry and to travel to a log entry retrieved by calling the GetTravelLogEntry method: public static ITravelLogEntry ...
5
votes
2answers
246 views

Any workaround to get text in an iFrame on another domain in a WebBrowser?

You will probably first think is not possible because of XSS restrictions. But I'm trying to access this content from an application that hosts a WebBrowser, not from javascript code in a site. I ...
4
votes
2answers
119 views

Is there any way to reference the system fonts and colors in Internet Explorer from HTML, CSS or MSHTML interfaces?

I want to do something like this: <style type="text/css"> body { font-family: dialog-font; /* Tahoma, Segoe UI or MS Sans Serif */ color: button-text; background-color: ...
4
votes
3answers
8k views

Could not load file or assembly 'Microsoft.mshtml … Strong name validation failed

I made a WPF/C# program and I am using the internet control for WYSIWYG HTML editing. it is a regular Executable program. it works on most computers however some computers are giving me the ...
4
votes
12answers
6k views

HTML - How do I know when all frames are loaded?

I'm using .NET WebBrowser control. How do I know when a web page is fully loaded? I want to know when the browser is not fetching any more data. (The moment when IE writes 'Done' in its status ...
3
votes
3answers
185 views

MSHTML fallback for data uri:s

My site uses data uri:s to reduce the number of HTTP requests to my site. The problem is that data uri:s don't work in IE7, a browser that we have to support (No, we don't need IE6). I've followed ...
3
votes
1answer
158 views

Creating a minimalistic MSHTML-based window

I have a library for Haskell that can take an ordinary web application, run it on a local server, and then open up a window displaying that application using QtWebkit. The code to interface with Qt is ...
3
votes
3answers
801 views

How to replace a HTML-tags inner text content using C#!

Right now I'm working on a Internet Explorer add on which is supposed to scan a HTML-document for URL's in plain text, and then "linkify" them. I have access to the websites DOM, and had an idea to ...
3
votes
0answers
469 views

mshtml.dll version is 8.0 and Microsoft.mshtml is 7.0

I'm a little confuse and maybe you can help me. I've the mshtml.dll (version 8.0) and the Microsoft.mshtml.dll (version 7.0) If I go to add a reference to my WPF project and try to add the ...
3
votes
2answers
726 views

Do the new NoPIA and Type Equivalence features in C#/.NET 4.0 mean Microsoft.mshtml.dll is no longer needed

I'm maintaining a WPF based application which contains a WinForms based WebBrowser control that based on the IE web browser control. When we deploy, we have had to also supply Microsoft.mshtml.dll and ...
3
votes
1answer
945 views

Using Microsoft.MSHTML in a loop, memory leak

Hey, I am attempting to use the Microsoft.MSHTML (Version 7.0.3300.0) library to extract the body text from an HTML string. I've abstracted this functionality into a single helper method ...
3
votes
4answers
5k views

How do I save a web page to image

I have a WebBrowser control and I want to save the whole page viewed to image (any web page). I tried using IHTMLElementRender interface but it didn't work for all web pages. Maybe I'm doing something ...
3
votes
3answers
2k views

MSHTML tutorial

I want to learn some basics about MSHTML, like how to use IHtmlDocument and IHtmlDocument2 interfaces. I searched for quite a while, but can not find out a tutorial for beginners. Could anyone ...
3
votes
2answers
943 views

Not getting event arguments in IHTMLElement event handler

I've added a callback to an IHTMLElement instance but when the IDispatch::Invoke is called for the event, there are never any arguments (i.e. the pDispParams->cArgs and pDispParams->cNamedArgs are ...
2
votes
1answer
162 views

MSHTML.dll - How to ensure consistent version of IE rendering engine is used across install machines

I'm a bit confused by what I'm reading on line regarding redistribution of MSHTML.dll. My application (this is a consumer data extraction tool) makes use of the WebBrowserControl in a WebForms app ...
2
votes
1answer
189 views

How do I add an event listener to my button created in C# for IE BHO?

In my IE BHO I create a input button element using: var button = doc.createElement("input"); button.setAttribute("value", "myButton"); //next line gets an error ...
2
votes
1answer
115 views

How to access Pseudo Elements (:before, :after, etc) or Pseudo Classes (:hover, :visited, etc) using MSHTML?

I'm parsing a document with MSHTML and I need to determine the Pseudo Elements in the document. Right now I have a reference to an IHTMLElement in .net code and I need to determine if this element has ...
2
votes
2answers
231 views

How to enter the text in textarea using mshtml

I am facing a problem I have to fill a TextArea programatically. I used the following code. System.Windows.Forms.HtmlElement reviewText = myDoc.GetElementById("review-text"); reviewText.InnerText = ...
2
votes
0answers
249 views

WinForms problem with mshtml and ie9

IE9 appears to have broken my mshtml com based WebBrower html editor in my 32-bit winforms .net 3.5 application. (It has to be set to 32-bit due to an activex USB device controller I have to use.) ...
2
votes
0answers
143 views

Accessing a frame name results on an “Access is denied” exception

I'm making a toolbar on C# for IE and I need to access a certain frame within the website. On my initial tests, I'm just trying to cycle through the frames and have a MessageBox popup with the name of ...
2
votes
1answer
94 views

IE “per browser” explorer bar

Is there a way to create a "per-browser" explorer bar in IE, that means an explorer bar common for all open tabs? The explorer bars created following MS guidelines are "per-tab", meaning that a new ...
2
votes
2answers
71 views

javascript: which functions are called on an object during indexing?

This might be a poorly worded question but considering this snippet: var foo = { bar : 1 }; var bar = foo['bar']; What functions are actually called when indexing into foo? Similarly, what if you ...
2
votes
0answers
341 views

Get current style using MSHTML in C#

I want to use MSHTML to get the style of an html element. What I want is the computed style but without all the default values. (only the ones that are set in the html and css) MSHTML has 3 types of ...
2
votes
2answers
553 views

WebBrowser Control in 32bit app Launches 64bit Internet Explorer on window.open() call

I have a 32bit application running on Windows 7 64bit. The application (written in C++) hosts a WebBrowser control. When the WebBrowser control is asked to popup a new windows (through a javascript ...
2
votes
1answer
204 views

BHO memory leak

I've written a BHO based on this tutorial: http://www.codeproject.com/KB/cs/Attach_BHO_with_C_.aspx My GetSite and SetSite are identical to the tutorials listing. I am adding/removing an ...
2
votes
2answers
197 views

How can I call a method on a custom object created in JavaScript using C#?

I have a WebBrowser control. I have added some JavaScript into the head tag and I can see it is working as expected by adding an alert. Inside of this js I am creating a function and adding some ...
2
votes
3answers
722 views

Is there another way to load MSHTML documents without use Application.ProcessMessages?

Is there another way to load MSHTML documents without use Application.ProcessMessages? To load a document into a IHTMLDocument I need to do this: while Doc.readyState <> 'complete' do ...
2
votes
1answer
461 views

IWebBrowser2 Quit method fails with a E_FAIL result

I am hosting the web browser control in my own window. Here are the pertinent steps: CoGetClassObject(CLSID_WebBrowser, CLSCTX_INPROC_SERVER | CLSCTX_INPROC_HANDLER, ...
2
votes
1answer
1k views

WPF WebBrowser control doesn't enter design mode when the document property is changed

I have a frustrating problem. Here's a simplified version of what I'm doing: A UserControl in c# contains a toolbar and an embedded WebBrowser object. The toolbar contains an "Edit" button, which ...
2
votes
2answers
740 views

IHTMLTxtRange.pasteHTML doesn't replace old HTML

I'm writing a simple HTML WYSIWYG editor using Microsoft's mshtml. One of the features should be selecting a header type (e.g. h1, h2, h3) for a selected text. The first assignment is no problem with ...
2
votes
2answers
4k views

MSHTML - Auto Click for JavaScript confirm dialog

I am trying to automatically parse/submit a web page using MSHTML (in C#.Net 3.1 WPF WebBrowser control). I can fill the forms, click buttons, and navigate pages without problems. But I do not know ...
2
votes
3answers
2k views

.NET mshtml: How to pass a BSTR SAFEARRAY?

The class mshtml.HTMLDocumentClass in Microsoft.mshtml.dll assembly has a method: public virtual void write(params object[] psarray); Avoiding the real question for a moment, what code would you ...
2
votes
1answer
1k views

Using MSHTML for the GUI in C++, is there perhaps a tutorial?

I would like to migrate my app to using MHTML for the GUI since it would be much easier to experiment with layouts without rewriting the C++ every time. Is there a tutorial? What I found is ...
2
votes
2answers
986 views

Why is EventInfo.RemoveEventHandler throwing a NullReferenceException?

I've got some code that is using reflection to install .NET event handlers on mshtml objects in an Internet Explorer BHO, and it appears to be working fine. I'm running into trouble, however, when I ...
1
vote
2answers
29 views

C++, web browser control: cannot change encoding/charset

There's a document I'm displaying in a web browser ActiveX control hosted in a C++ app. This document has a META tag that specifies incorrect charset, so the output is funny. I know the correct ...
1
vote
3answers
132 views

Rendering HTML+Javascript server-side

I need to render an HTML page server-side and "extract" the raw bytes of a canvas element so I can save it to a PNG. Problem is, the canvas element is created from javascript (I'm using jquery's Flot ...
1
vote
2answers
85 views

NullReferenceException with System.Windows.Controls.WebBrowser WPF

I have a C# WPF application with a web browser control (System.Windows.Controls.WebBrowser) called wB. It is supposed to display a local html file, and some information parsed from it. I get the a ...
1
vote
1answer
69 views

Set url in IHTMLDocument2

How do I set the url of an htmldocument after I've written to it. For example: WebBrowser wb = new WebBrowser(); wb.Navigate(new Uri(location, UriKind.Absolute)); IHTMLDocument2 myDoc = new ...
1
vote
0answers
66 views

Determining when an IE window is displaying a dialog box from a desktop app

I am attempting to determine if a selected browser window is showing a dialog box. I am using the shdocvw.internetexplorer object to grab the browser and get specific elements of the browser. I am ...
1
vote
2answers
128 views

.NET webbrowser security prompt

I am using a .NET web browse control for windows forms. Every time I visit this specific web page, I get this specific prompt: http://screensnapr.com/v/fS15lG.png This nag box disrupts the program ...
1
vote
0answers
138 views

Debugging SHDocVw.InternetExplorer.Quit not closing iexplore.exe process

I think there's no definite answer so how would you approach debugging this problem?: My main app (a MicroStation plugin) launces IE using the SHDocVw.InternetExplorer COM wrapper, interacts with it, ...
1
vote
2answers
89 views

IHTMLElement -> IAccessible

How to get IAccessible from IHTMLElement? I have receive "Interface is not support" error.
1
vote
0answers
68 views

How to disable VML in MSHTML

I'm using the MSHTML control in edit mode. When I copy and paste stuff from word to my control the MSHTML controls strips the standard HTML and keeps VML markup that's not very well supported out ...
1
vote
1answer
110 views

Get a particular input element from a particular form, cSharp

Like the statement, string value = document.forms["sap.client.SsrClient.form"].elements["sapwdssr..requestCounter"].value; in javascript, is there a corresponding statement to get the value of a ...
1
vote
1answer
103 views

How to compile a .dll for MSHTML v9. I'm currently getting 100s of “MIDL 2035: constant expression expected” errors

I'm a .net developer and I'm trying to compile a .tbl and .dll for MSHTML v9 for use in my .net applications. I found the following instructions for building a MSHTML v8 .dll: start menu -> ...
1
vote
1answer
160 views

How to obtain IServiceProvider and IMarkupServices from HTMLDocument (mshtml)

Im doing some test creating an instance of HTMLDocument this way: object[] pageText = { "<p>some text...</p>" }; var document = new HTMLDocumentClass(); var document2 = ...
1
vote
1answer
442 views

use mshtml HTMLDocument to modify DOM and display in IE browser extension/ BHO

I'm working with C#.NET: mshtml.HTMLDocument, mshtml.HTMLImg etc. What I'm trying to do is modify the DOM and reflect the change in the browser. e.g. HTMLDocument doc = ...
1
vote
0answers
159 views

Calling mshtml from limited priviledge (Could not load type, because assembly is not fully trusted)

In ASP.NET application run on remote hosting server i get this error: Could not load type 'mshtml.IHTMLDocument' from assembly 'myassembly, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. ...

1 2 3 4