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

0
votes
1answer
24 views

Assign a File Path to WBC Web Page Input

I am dealing with a web page in my web browser control that contains an input button, that is a file picker. <TD>File Name</TD> <TD> <INPUT id=filMyFile size=60 type=file ...
0
votes
1answer
93 views

How to use HTMLElement class in C/C++ code

We have been using IHTMLElement and IHTMLElement2 scripting interface to access web objects and its properties. Right now we are in a situation, want to know the client area occupied by the element, ...
2
votes
1answer
96 views

WPF View screen offset in Web Browser C#

I can move to certain location of the page by using: HTMLDocument doc2 = (HTMLDocument)webBrowser1.Document; int offSetTop = 1000; doc2.parentWindow.scrollTo(0, offSetTop ); The screen ...
0
votes
0answers
141 views

c# mshtml on webbrowser winforms

I need to intercept the textbox click on the DOM in webbrowser control in c#. I searched a lot in the internet and I learned to use mshtml.dll. Includes it in the project and this is my example: ...
0
votes
2answers
200 views

Get href from html using mshtml in C#

I am trying to get the href link out of the following HTML code using mshtml in C# (WPF). <a class="button_link" ...
0
votes
0answers
39 views

How to invoke scripts work in msHTML

I'm using axWebBrowser and I need to make a script work which works when selected item of a listbox is changed. In default webBrowser control there is a method like; ...
0
votes
0answers
131 views

How to capture TextBox lostfocus event for website loaded in WPF webbrowser?

Using WPF webbrowser control I am loading a website with various controls on it like button, checkbox, radiobutton and textboxes. I want to capture onfocuslost event generated by TextBoxes for which ...
0
votes
1answer
82 views

ABCpdf8 MSHTML Engine and SVG

I want to add an SVG image file that is specified in html in an img tag to my PDF using the MSHTML engine. The image appears properly in the browser using the same html. However, when I use ...
0
votes
1answer
82 views

IHTMLElementCollection´s length changes during loop

I have this code which loops over an element's nodes: public static IEnumerable<IHTMLDOMNode> AllElements(this IHTMLDOMNode node) { if (node.IsHTMLElement()) { IHTMLElement ...
0
votes
2answers
281 views

VB.NET / C#.Net MSHTML: Unable to get “name” attribute from Outerhtml after using “setAttribute('name',value)” for certain elements

I am developing a WYSIWYG application specifically for my company usage with custom integration with company's existing tools. I was unable to get the "name" attribute out of certain elements when ...
0
votes
0answers
79 views

Pull combobox data using html object library

I am dealing with a drop down web page combobox that I would like to pull values from. The HTML looks like so: <select name="refname" id="refname" ...
4
votes
2answers
202 views

Do I absolutely need to call ReleaseComObject on every MSHTML object?

I'm using MSHTML with a WebBrowser control because it gives me access to things the WebBrowser doesn't such as text nodes. I've seen several posts here and on the web where people say you must call ...
0
votes
0answers
41 views

middle clicking hosted CLSID_WebBrowser control

I am hosting the IE web browser control (CLSID_WebBrowser). Anyone know how I can capture the event when a user middle clicks on a link so that I can create a new tab and navigate to the clicked url? ...
0
votes
0answers
103 views

MSHTML Eventhandler is not working in IE 64 bit

I created a Browser helper object in c++. It will highlight the phone numbers in the web page and if I click on the phone number, it will raise the call. In my code, I am tracking the click event ...
2
votes
2answers
159 views

HTML traversal is very slow

I faced that simply iterating through MSHTML elements using C# is horribly slow. Here is small example of iteration through document.all collection three times. We have blank WPF application and ...
0
votes
1answer
157 views

Add link to InnerText of WebBrowser control

I am displaying an incoming e-mail in a WebBrowser control. If the email is in HTML, links are clickable and users are able to navigate to the URL quickly in their default browser. If the email is in ...
2
votes
0answers
238 views

Invalid window in DocumentComplete (DISPID_DOCUMENTCOMPLETE) in IE9 BHO

I'm developing the BHO and I have a problems with events handling in IE9. I handle DocumentComplete (DISPID_DOCUMENTCOMPLETE), then I get IHTMLWindow2 and its IHTMLLocation for future operations. ...
0
votes
0answers
111 views

How to find Index of an IHTMLElement in IHTMLEmenentCollection?

I have get an element as below, IHTMLElement myElement= _HtmDocument.getElementById("controlid"); Now I want to give some tag index to this selected control as below. int collectionIndex = 0; ...
5
votes
1answer
364 views

how to get an IHTMLElementCollection obj which composed of several IHTMLElements?

guys: I got a problem about "how to get an IHTMLElementCollection obj which composed of several IHTMLElements" in object-pascal programming , my codes below: function ...
0
votes
0answers
89 views

Get element objects covered by IHTMLTxtRange

I'm using a MSHTML webbrowser (via TWebBrowser in Delphi) to edit HTML. When the user selects a part of the document I can get the selection and from that an IHTMLTxtRange. But I need to get a list ...
2
votes
1answer
242 views

Using mshtml interfaces in different threads

I have BHO written in C#. Initialization is performed in DocumentComplete event handler in main thread and then I start separate thread and want to use IMarkupServices in that thread but receive ...
0
votes
0answers
151 views

mshtml vs webbrowser.document C# winforms

Searching the net about the best approach to DOM manipulation I came across MSHTML. I'm interested in detecting newly presented data through ajax requests. Most examples involve the - undocumented - ...
3
votes
1answer
277 views

How to get all IHTMLStyle attributes of an IHTMLElement?

I use the below code: const HTML_DOC = '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">' + '<BODY><P id="p1" style="width: 440px; height: 344px; margin: 3px ...
0
votes
3answers
384 views

Why does Microsoft have IHTMLDocument, IHTMLDocument2, … , IHTMLDocument8?

What is the meaning of the number in the end of the interface name? I see that IHTMLDocument3-7 have no members (see example for #5), and 8 has gesture related members. Is the number derived from ...
0
votes
0answers
109 views

IViewObject::Draw does not use DVTARGETDEVICE parameter for font rendering

I am using MSHTML as a HTML parser to print some HTML pages. Everything works fine except for font rendering. I used to call OleDraw to ask MSHTML to draw the IHtmlDocument, so the rectangles of the ...
0
votes
1answer
90 views

IViewObjectPresentSite::CreateSurfacePresenter fails in WebBrowser control

My ActiveX control calls IE9's CreateSurfacePresenter to get an ISurfacePresenter interface. I use it to render to a d3d surface exposed by the IE9 (or higher) browser, and thus achieve ...
3
votes
1answer
187 views

Cannot cast 'mshtml.HTMLDocumentClass' to 'mshtml.IMarkupServices'

I have a problem casting mshtml.HTMLDocumentClass to mshtml.IMarkupServices IHTMLDocument2 doc = new HTMLDocumentClass(); doc.write(new object[] { item.HTMLBody }); IHTMLTxtRange range = ...
0
votes
0answers
146 views

VB.NET mshtml library causing “Access is denied” (0x80070005) Or “Object reference not set…” errors

I am using the mshtml library inside a VB.NET console application to extract some data from an http request. The code is as follows: Dim htmlDocument As IHTMLDocument2 For i As Integer = 0 To 10 ...
0
votes
1answer
42 views

Microsoft Equivalent of WebkitGTK hovering-over-link signal

I need to add ability to catch event each time there is mouse hover event both on Linux and Windows. In Linux I easily connect to hovering-over-link signal. I cannot seem to find Windows equivalent. ...
0
votes
1answer
266 views

How to get the iframe element in the parent document from the child document in a cross domain iframe?

I have this code that will do the opposite: gets the child document given an iframe element: var htmlWindow = (element as IHTMLFrameBase2).contentWindow; if (htmlWindow == null) return null; // ...
0
votes
1answer
125 views

Check return value when using MSHTML in C#

I am trying to use MSHTML in my C# application (BHO). In particular I want to use IMarkupPointer.findText method. This method searches for text and I want to check if text was found or not. When doing ...
0
votes
0answers
76 views

Wrong COM is loaded object in Powershell script

Trying to write html parser in powershell. Script works well on Win7 and fails on Win2003. The problem is: Win7: $h = new-object -com "HTMLFILE" $h | Get-Member TypeName: ...
1
vote
1answer
235 views

SHDocVw::IShellWindowsPtr fails with IE8? (Error 0x80040154)

My program is a dll that hooks into a running instance of IE. It's worked fine for years. Recently I dusted it off and ran it, but the last line below fails with hr = 0x80040154: #import ...
0
votes
0answers
52 views

How to automate selecting an option like the user clicking in internet explorer

I can automate the web. For example, I can automate clicking a button by btn.click This comes in handy if the web have some javascript to execute when clicking buttons. What about if the ...
1
vote
0answers
135 views

'Permission denied' in calling original setTimeout of htmlfile window

I am trying to overwrite timer methods (setTimeout, clearTimeout, setInterval and clearInterval) on an MSHTML instance, so I can track functions that have been added to setTimeout/setInterval and ...
0
votes
1answer
51 views

how to enlist the module of any exe attached to debugger

I'm actually debugging the IE and want to enlist all the module. My preference is all function contain in MSHTML.dll , but I'm not able to do that. Things done by me as follow:- I've attached ...
0
votes
1answer
303 views

Unable to cast COM object of type 'System.__ComObject' to interface type 'mshtml.HTMLElementCollection

Am trying to use mshtml to fill a form on vb.net through the webbrowser control, Dim doc As MSH.IHTMLDocument2 = DirectCast(wbMain.Document.DomDocument, MSH.IHTMLDocument2) Dim buttons As ...
0
votes
1answer
118 views

How can I create an IHTMLWindow2 object of a certain size?

I am able to create a document and window using the mshtml library in C#. But when I do this the window appears to have a height and width of 0. I can use window.open("about:blank", null, ...
1
vote
0answers
189 views

Invoke Javascript OnChange Event

I am stuck for the first time in a while. These days I use HtmlAgilityPack for web scraping info but for dynamic data I must use a browser control first. I have failed on IE and Visual Studios ...
0
votes
1answer
65 views

In MSHTML, what do the numbers mean? Like in IHTMLElement7?

In MSHTML the interfaces are often numbered. The numbers are at the end of the interface names like IHTML{name}{number}. Interfaces like: IHTMLRuleStyle IHTMLRuleStyle2 ... IHTMLRuleStyle6 or ...
0
votes
1answer
373 views

How open internet explorer window, navigate it on url and get her document(HTMLDocument or InternetExplorer) using c# and mshtml library

How open internet explorer window or tab, navigate it and get her document(HTMLDocument or InternetExplorer) using c# and mshtml library. The type of IE object should be HTMLDocument or ...
-1
votes
1answer
98 views

How to get the page source from an IE window?

I need to parse the page source as rendered by IE. I can use the following simple code to open an IE to a URL. (The BrowserWinodw type is from the Visual Studio Coded UI test framework.) ...
0
votes
2answers
64 views

How to get the html string exactly like IE renders it?

I am having some problem to get the exactly same HTML string as rendered by IE10. There're some slight difference between the one rendered by IE 10, and the one I retrieved with ...
0
votes
1answer
94 views

How to get IViewObjectPresentSite from web browser control or document

IViewObjectPresentSite is part of MSHTML(IE9?) according to http://msdn.microsoft.com/en-us/library/jj206442(v=vs.85).aspx. I am trying to run QueryInterface for IID_IViewObjectPresentSite on ...
1
vote
0answers
170 views

Debugging websites in embedded IE

At work, we have a phone system with a dialer component. The dialer component includes an agent script application, which is a fairly simple application that embeds MSHTML. When you login to the ...
0
votes
0answers
205 views

Getting an iframe document object via c#

I have this code snippet that needs to retrieve the document object of an iframe and save it in an object. //just a wrapper object to store the document object DocObj obj = new DocObj(HtmlDoc); ...
2
votes
1answer
476 views

Full HTML code from iframes using webbrowser

I need get the html code this site (with C#): http://urbs-web.curitiba.pr.gov.br/centro/defmapalinhas.asp?l=n (only works with IE8) Using the WebClient class, or HttpWebResquest, or any other ...
0
votes
0answers
87 views

C# and WebBrowser Controls

So I'm trying to load http://server7.firmchannel.com/mediatile/multizonetest.html in a webbrowser control in C# (Visual C# 2010 Express). Unfortunately, while pages like Google.com and slashdot.org ...
0
votes
0answers
48 views

mshtml and CLS-compliance

I am witnessing some odd behaviour with mshtml and CLS-compliance. I have an assembly marked CLSCompliant(true). This assembly does not expose any types from mshtml publicly. I can make the code ...
-3
votes
1answer
88 views

Get the text of the recent javascript alert

I'm writing an IE extension using mshtml. Is there a way to get the text from the recent alert displayed to the user (via C# or javascript)? Thanks in advance.

1 2 3 4 5