0
votes
1answer
10 views
Get Current User Selection(IHTMLTxtRangePtr) in MSHTML
Hi,
How can I get Current user selection or current cursor location in HTML document? I am useg MSHTML interfaces in MFC.
Thanks. :)
0
votes
2answers
26 views
Using different versions of MSHTML in C#
Is there any way to force a C# application to use a specific version of the MSHTML DLL?
I'm trying to write an application that uses the different versions of the IE rendering eng …
0
votes
0answers
19 views
WPF WebBrowser control doesn’t enter design mode when the document property is changed
Dear LazyWeb,
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 c …
0
votes
2answers
23 views
MSHTML MFC Tutorial
Hi,
I know this has been asked twice before but both had no proper replies and are dated so in case someone has found something in these days, I'm asking again!.
Any one knows an …
0
votes
2answers
249 views
How to get HTML element coordinates using C#?
Hello,
I am planning to develop web crawler, which would extract coordinates of html elements from web pages. I have found out that it is possible to get html element coordinates …
0
votes
1answer
133 views
How to parse onclick javascript event parameter using MSHTML?
I need to extract the javascript call in the onlick event defined in the following markup:
<div style="cursor: pointer;" onclick='javascript:start("a", "b", "code");'>Click …
0
votes
4answers
1k views
How to disable Javascript in mshtml.HTMLDocument (.NET)
I've got a code like this :
Dim Document As New mshtml.HTMLDocument
Dim iDoc As mshtml.IHTMLDocument2 = CType(Document, mshtml.IHTMLDocument2)
iDoc.write(html)
iDoc.close()
How …
0
votes
2answers
220 views
How to capture events fired from new Popup IE window
Hi,
Greetings!
Situation:
My ActiveX DLL contains a customized webbrowser. The webbrowser displays a web page. When user clicks the link within the displayed page, a new IE wind …
2
votes
3answers
443 views
MSHTML tutorial
Hello everyone,
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 tutoria …
0
votes
2answers
120 views
c# webbrowser control displaying “special folder” contents : why are Document and DocumentDom always null ?
Hi,
In a C# WinForms, .NET Framework 3.5, project with a WebBrower control on the form :
... with a project reference set to MSHTMLdll and the WinForm code : "using mshtml;" ...
…
0
votes
0answers
22 views
How can I use IHTMLTxtRange.pasteHTML to paste HTML containing a span with a class?
Dim selection As IHTMLTxtRange = Doc.selection.createRange()
selection.pasteHTML("<span class=""header"">" + selection.text + "</span>")
I am using the above …
0
votes
0answers
13 views
Using IHTMLElementRender Interface in Winodws mobile Pocket Internet Explorer.
Hi All,
We would like to use IHTMLElementRender Interface in Windows mobile Pocket Internet Explorer for drawing HTML element content into our custom window DC but found that inte …
0
votes
0answers
32 views
How do I allow XSS in an embedded IE browser?
I have a windows application with an embedded web control and I want to enable cross site scripting. Is this possible? From what I've read, IInternetSecurityManager.ProcessUrlActio …
0
votes
1answer
92 views
URL Moniker Examples for C# (IMoniker)
Dear lazyweb,
I am trying to implement an URL Moniker for MSHTML that will be used to provide images from a storage (in the application) to the HTML Edit control. I have understoo …
0
votes
3answers
383 views
get an html element top and left properties data
i'm using the mshtml dll to develop a helper to ie,
i'm trying to get the position of an htmll element,
i have an object with type of HTMLAnchorElementClass
when i'm trying to get …
