Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
2answers
762 views

Hooking the http/https protocol in IE causes GET requests to be sequential

I'm using the PassthruAPP method to hook into HTTP/HTTPS requests made by IE. It's working well for the most part, however I noticed a problem. Only one download thread is active at a time, normally ...
3
votes
0answers
473 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
1answer
997 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 ...
2
votes
0answers
270 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.) ...
1
vote
1answer
173 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
2answers
54 views

How can I close the newly opened Internet Explorer using the mshtml

I want to close a newly opened Internet Explorer using the mshtml. I have a program , which takes values from different IE Window. The navigation to each Window is invoked using the Click() method ...
1
vote
1answer
160 views

How to Redraw/Repaint an IHTMLElement pointing to an image element in the DOM in IE9?

I've got a valid IHTMLElement object that points to an image in IE9. The image data was recently updated via an IDirectDrawSurface. I'm trying to find a way to force IE9 to repaint the image in the ...
1
vote
0answers
209 views

mshtml 8.0 and Microsoft.mshtml 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 ...
1
vote
5answers
2k views

ClickOnce Deployment, system update required Microsoft.mshtml

We have an application that works with MS Office and uses Microsoft.mshtml.dll. We use ClickOnce to deploy the application. The application deploys without issues on most machines, but sometimes we ...
0
votes
0answers
87 views

Strong name signature not valid for this assembly Microsoft.mshtml.dll

I have a C# console app that has several different projects in it and is deployed via ClickOnce. I had it on another computer and everything was running great. However, I switched to a new computer ...
0
votes
1answer
49 views

Include post variables in a createDocumentFromUrl call in .NET

I have a project in Visual Basic 2010 Express that parses web pages use the IHTMLDocument object. Here is the function I am using to retrieve a web page: Private Function GetHTML(ByVal url As ...
0
votes
0answers
91 views

mshtml - does not display <table>

in my application I use a WebBrowser-Control. In this I load a uri. When I show the code of this uri in internet explorer ist shows the following: <div id="subProgramsContainer"> ...
0
votes
0answers
202 views

“mshtml.HTMLWindow2Class.document ” throws System.UnAuthorizedAccessException.

I am using mshtml.HTMLWindow2Class.document property to check the state of the web page. But I kept get the following exception: System.UnAuthorizedAccessException. Anybody know how to fix it? I ...
0
votes
1answer
90 views

How can I close the newly opened Internet Explorer using the mshtml (c# code)

I want to close a newly opened internet Explorer window using the mshtml (c# code). I used the Mshtml with the instance of Ie and navigated through a url and clicked on a link. Once i click the ...
0
votes
1answer
363 views

How to execute javascript using the mshtml

mshtml.HTMLDocumentClass doc = (mshtml.HTMLDocumentClass)IE.Document; object script= doc.Script; object[] args = { FirstArgument , "FrameContent", "tree.aspx", "FrameNav" }; ...
0
votes
1answer
341 views

How to get image size on random page using C# with MSHTML?

I am trying to retrieve images on the page using mshtml. Working on 2 different machines (both Win7-64 bit) gives me different results. One of the machines works just fine. The second one, though, is ...