0
votes
1answer
22 views
Element offset and client positions in BHO
Hi all,
How to find the position of the HTMLElement in BHO(C#)?
I need both offset position of the element in the page and the client position of the element i.e. position of the element from the …
0
votes
0answers
108 views
WPF Net3.5 WebBrowser HTMLElement Mouse Click
Ive been using a WIndowsFormHost to host a Windows.Forms.WebBrowser control and adding a event handler to fire when the mouse is clicked on a HTML element inside the control
…
0
votes
2answers
123 views
Finding the offset client position of an element
Hi all,
How to find the offset client position of an element using Javascript? (I assume the same code can be written in a BHO or Gecko/NPAPI).
The problem I am facing is a way to find out the …
0
votes
1answer
357 views
Find specific data in html with HtmlElement(Collection) and webbrowser.
I want to find a div with the class name XYZ then in it i want to loop through a bunch of elements named ABC. Then grab the links (a href) inside and possibly other information. How do i find the div …
0
votes
2answers
183 views
POST’ing to a server for the contents of an <iframe>
(First posting, so please be merciful if I'm off on some of the etiquette, markup, etc. :))
Server-side:
iframe-contents.php:
<?PHP
if($_POST['test-post-parameter'] == 'test-post-value'){
echo …
0
votes
3answers
212 views
How do you handle HTML element IDs and Javascript references when adding line items using Javascript?
First off, I read all of the suggested questions that sounded halfway relevant and didn't find anything that addressed my issue. Second, if this is already addressed somewhere, I didn't search well …
0
votes
0answers
210 views
Webbrowser Control & Javascript: Form doesn’t update after changing Elements
Hi Guyz!
I have a problem concerning the Webbrowser Control in VS2005 (.NET 2.0).
I have a site containing this html code:
Button which I want to submit
Button that gets submitted
Okay, with …
0
votes
2answers
220 views
How to set dropdownlist in .aspx page from managed code via DOM
I've a control that sits in the .aspx page, but the dynamic code is in separate project in Page.xaml.cs.
On the same page as the control, I have:
<asp:DropDownList ID="DropDownAppServer" …
2
votes
2answers
2k views
C#: HtmlDocument object has no constructor?
What's up with that? It seems the only way to get an working HtmlDocument object is copying the Document property of an mshtml/webbrowser control. But spawning that is sloooooooooooow. I'd like to …
0
votes
2answers
559 views
Handling key events on WebBrowser control
I am using the WebBrowser control in a C# application and want to handle all key events while the WebBrowser has the focus, regardless what individual content element (input field, link, etc.) is …
2
votes
4answers
408 views
Building HtmlElement object trees
I'm using the MSIE WebBrowser control in a C# desktop application and am looking for a way to build and maintain trees of HtmlElement objects outside of this control. I am trying to quickly switch …
1
vote
1answer
176 views
getting IHTMLStyle3 from the Dom of HtmlElement in IE
I've got a System.Windows.Form.WebBrowser control on a form. I navigate that browser object to a url.
Once the page has finished loading, I'd like to analyse various aspects of the page that loaded.
…
1
vote
5answers
934 views
Removing HtmlElement objects programmatically using C#
In a WebBrowser control, how do I remove HtmlElement objects? There are no methods in the HtmlElement class to accomplish this. As a workaround, I can create a "dummy" HtmlElement (without inserting …
0
votes
5answers
359 views
Caching and re-using tree of HtmlElement objects
I am using the WebBrowser control in my project to display complex HTML documents that are generated/manipulated at runtime.
I have noticed that constructing the DOM programmatically from C# by …
0
votes
1answer
105 views
Programatically execute a SPAN’s Class from DOM Element?
This is a .NET program, and I am accessing the HTMLElements individually. There are pieces of markup that have a "More..." / "Less..." in a SPAN tag, that when Clicked will show more/less of the …
