Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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 ...
2
votes
1answer
254 views

Why do I get an access violation when setting the value of an IHTMLInputTextElement?

I get the following error: Access Violation at address 0050AA07 in module "project1.exe". Read of address 00000000. I'm trying to auto fill a form in TWebBrowser. It's just a field called ...
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
2answers
220 views

iterate over IHTMLElementCollection

is there a way to iterate over IHTMLElementCollection? such as var e : IHTMLLinkElement; elementCollection:IHTMLElementCollection; begin for e in elementCollection do ...
1
vote
2answers
116 views

assigning onmouseover event to my htmldocument is not working

I'm working on a project in which I'm writing a c# windows application that wants to get the current element under the cursor from a running instance of Internet Explorer. I can get the handle of ...
1
vote
1answer
341 views

How to query HTML with x XPath expression in C++?

I have a webbrowser and I use DocumentComplete to read the current document from the WebBrowser (as IHTMLDocument2). What's the easiest way to run xpath queries in that html doc? I am looking for ...
1
vote
3answers
148 views

Unable to add a row to a HTML table dynamically

I am unable to add a row to a HTML table dynamically. I am using IHtmlDocument2 to create tr and td elements and IHtmlElement to set attributes and IHtmlDomNode to add created node to the document ...
1
vote
1answer
622 views

Detect cursor position in TWebBrowser at edit mode

I get selection range like this: var Range: IHTMLTxtRange; begin if Supports((Document as IHTMLDocument2).selection.createRange, IHTMLTxtRange, Range) end; TWebBrowser in editing. I need ...
1
vote
1answer
325 views

WYSIWYG html editor query

I am in the process of creating a simple WYSIWYG html editor to enable the users of my application to design simple html emails. At the moment I have decided to use the web browser control with ...
1
vote
2answers
2k views

How to attach an event to IHTMLDocument2 link elements in Delphi?

I'm using this code to get all the links from an IHTMLDocument2: procedure DoDocumentComplete(const pDisp: IDispatch; var URL: OleVariant); var Document:IHTMLDocument2; Body:IHTMLElement; ...
1
vote
1answer
454 views

When using Microsoft Html Control the ReadyState never gets further than Interactive

We are using the Microsoft MSHtml control to render and modify web pages, we have today deployed to Citrix and found that the document state often does not get any further than interactive while we ...
0
votes
1answer
66 views

Trying to edit IHTMLDocument hangs an application

based on MSHTML documentation for IHTMLDocument2 I'm trying to write simple HTML parser. Unfortunately trying to set edit-mode fails, in other words resultState never gets 'complete' value so ...
0
votes
1answer
63 views

Accessing HTML source on event DownloadComplete?

I am working on a ads/popup blocker BHO and I am trying to access the html of a website from the event "downloadcomplete", so I can filter all the ads and malicious uris. My code looks something like ...
0
votes
3answers
78 views

“specified cast not valid” when using execScript

I'm trying to execute a script on an iframe inside IE but i get "specified cast not valid" all the time: IWebBrowser2 iWebBrowser2 = GetIframe(); //retrieve the iframe (saved in document complete ...
0
votes
1answer
80 views

How to Print the particular contents in the entire document using DHTML

In these example, I want to print the contents in the ID tab_form_1.While trying these sample to print the tab_form_1 contents,lpOleCommandTarget become NULL while query interface using CComptr . ...
0
votes
1answer
115 views

IWebBrowser2 IHTMLDocument2 CTRL+F dialog appears but finds no matches

I'm generating HTML pages from strings stored in a database by using the IHTMLDocument2 write(SAFEARRAY) method. This works OK. When CTRL+F is pressed the Find dialog appears as expected, but there ...
0
votes
1answer
81 views

IPersistStreamInit::Save() not working in IE9?

This code worked for IE8 and earlier. For IE9 it seems that IPersistStreamInit::Save() returns E_NOTIMPL. Any help is greatly appreciated! HRESULT CHtmlCtrl::GetDocumentHTML(CString& strHTML) ...
0
votes
1answer
280 views

IHTMLDocument2 does not work everywhere

In a winform application I have WebBrowser control and a PictureBox. I am loading an Image (from webbrowser control after DocumentComplete) to pictureBox1 with the code below IHTMLDocument2 doc = ...
0
votes
1answer
127 views

Why IHTMLDocument2 is not equal to IHTMLDocument2.body.document?

Why is the following doc2 different from doc22? IHTMLDocument2 doc2 = (pDisp as IWebBrowser2).Document as IHTMLDocument2; IHTMLDocument2 doc22 = doc2.body.document as IHTMLDocument2; bool isequal = ...
0
votes
1answer
516 views

IHtmlWindow2.execScript() throws UnauthorizedAccessException

I'm trying to execute a simple Javascript alert via the mshtml execScript method, unfortunately it results in the following exception: UnauthorizedAccessException: Access is denied. (Exception from ...
0
votes
1answer
194 views

MHTML's IHTMLDocument: incorrect charset after load from URL

A web page is loaded from the Internet in a windowless IHTMLDocument for future tweaking of the DOM. Everything is fine, except the charset is wrong: regardless of the charset advertised in the ...
0
votes
2answers
373 views

GetFormFieldNames not always working

I am trying to find out which form and element belongs too. The code that I now understand from this website: http://www.cryer.co.uk/brian/delphi/twebbrowser/read_write_form_elements.htm containing ...
0
votes
1answer
322 views

IHTMLEventObj::put_keyCode fails in IE9 RC

I have an IE BHO created over 3 years ago that uses IHTMLEventObj::put_keyCode function. This function has worked as documented in IE6, IE7 and IE8. However, when testing with IE9 RC it no longer ...
0
votes
2answers
420 views

Getting IWebBrowser2 pointer from event DISPID_TITLECHANGE

Im working on a Browser Helper Object, and I am trying to access the IWebBrowser2 that fires an event. With NavigateComplete2 and other events I can easly do it because I get the pointer on the ...
0
votes
2answers
197 views

Detecting Render Start on Webbrowser Control

Trying to figure out when the webbrowser control starts rendering (displays something) to the end user. Any idea on how to achieve this?
0
votes
1answer
670 views

how to create <tr> row and append/insert it into a table a run time ina web page + MSHTML

I'm using IHTMLdocument2 to create Element This is my code: IHTMLdocument2 pDoc2;//it is initialized in ma code BSTR eTag = SysAllocString(L"TR"); IHTMLElement *pTRElmt = NULL; hr = ...
0
votes
1answer
712 views

How to get HTML element coordinates using C#?

This is related to (http://stackoverflow.com/questions/1547614/how-to-get-html-element-coordinates-using-c) The answer given here is quite good. However, opening up a full instance of Internet ...
0
votes
2answers
650 views

Add onmouseover event in links rendered in C#.net webbrowser contrl

My task is to highlight selected words rendered in html in webbrowser control of C#.net. I accomplish it by using IHtmldocument2. (ref: ...