Tagged Questions
The ihtmldocument tag has no wiki summary.
6
votes
3answers
347 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 ...
3
votes
1answer
637 views
Using IHTMLDocuments 1, 2, 3 & 4
I am using a web browser in my current project and currently im using it in design mode to make it editable etc. The code i am currently using is:
WebBrowser.Document.DomDocument as IHTMLDocument2
...
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 ...
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
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
37 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
1answer
364 views
IHTMLElement2.getBoundingClientRect() does not work correctly
The getBoundingClientRect() does not work accurately for all cases. It fails when say a list of links that are side by side in a row and half of them are pushed to the next line because all the links ...