mshtml Questions
9
Solved
I have a C# solution that makes use of Smith Html Editor (I'm developing on the main project which uses this, so I don't know much about this library), which makes a reference to MSHTML. This worke...
Flirt asked 6/8, 2015 at 10:43
6
Solved
I made a WPF/C# program and I am using the internet control for WYSIWYG HTML editing.
it is a regular Executable program.
it works on most computers however some computers are giving me the follo...
3
I am using a WPF System.Windows.Controls.WebBrowser control to show some HTML content that is downloaded from a service. Sometimes the HTML contains URLs ("a" elements) that should be clickable.
B...
Diogenes asked 28/1, 2016 at 10:30
4
Solved
I have a c# app and i have tried using some mshtml elements. But i have a problem. The using mshtml; namespace gives me a error is Visual Studio 2012.
Here is my source code,
namespace Tagger
{
...
2
Solved
In the answer to question #56107, Erlend provided this sample c# code:
using mshtml;
...
object[] oPageText = { html };
HTMLDocument doc = new HTMLDocumentClass();
IHTMLDocument2 doc2 = (IHTMLDocu...
4
Solved
My current code works on elements outside of an iframe. How should I approach fetching elements within an iframe using getElementById? My end goal is to write text within the the <body id="tinym...
Ingot asked 27/8, 2013 at 21:59
2
I'm trying to do some web-scraping via PowerShell, as I've recently discovered it is possible to do so without too much trouble.
A good starting point is to just fetch the HTML, use Get-Member, an...
Pleura asked 12/5, 2016 at 20:12
1
Solved
I'm trying to parse HTML by MSHTML parser in Delphi 10 Seattle. It works fine , but ARTICLE tag confuse it, parsed ARTICLE element does not have innerHTML and children, although they are there.
p...
1
I am facing issue with BHO in C# ,Javascript not inject in iframe .
How to get access of <iframe> body using c++/ATL/COM?
question is similar like but in this above using com. i want to use...
Deejay asked 26/2, 2016 at 12:7
2
Solved
A have a web browser embedded in a dialog of my Win32 C++ application (no MFC, ATL, etc.) and I initially set the document's content from a string containing some HTML code. This HTML is rendered c...
Shaper asked 17/1, 2015 at 11:55
3
Solved
I'd like to use the MSHTML library to parse some HTML that I have in a string variable. However, I can't figure out how to do this. I can easily parse the contents of a webpage given a known URL, b...
Butz asked 3/4, 2012 at 14:23
2
1
Solved
I've just (August 2014) seen a report of a program that uses the command line
rundll32.exe javascript:"\..\mshtml,RunHTMLApplication"
How does that work? I thought the first parameter was suppos...
Sunderance asked 5/8, 2014 at 5:0
1
Solved
I have a WebBrowser that loads inside a WPF window. I need to get the title of the web page loaded in the WebBrowser.
I get the document using
object doc = this._browser.Document; and I can see t...
0
Im creating an IE BHO and trying to access a page that has multiple iframe tags. How to access the text in a span with id="messageText-txt" which is inside a specific iframe with name="isolatedWork...
2
Based on this article on MSDN: How To Determine When a Page Is Done Loading in WebBrowser Control, and from past discussions on StackOverflow, I would assume that in case of a document with multipl...
Sandlin asked 29/9, 2013 at 16:11
2
Solved
I'm trying to gather data from different websites. Therefore i'm using excel vba and start an internet explorer. I'm able to fill out a normal form. But sometimes i have to fill out a dynamic form ...
Hypodermis asked 30/10, 2013 at 18:5
4
Solved
What is the meaning of the number in the end of the interface name? I see that IHTMLDocument3-7 have no members (see example for #5), and 8 has gesture related members. Is the number derived from W...
Phototransistor asked 1/1, 2013 at 7:16
2
Solved
I'm using MSHTML with a WebBrowser control because it gives me access to things the WebBrowser doesn't such as text nodes. I've seen several posts here and on the web where people say you must call...
2
Solved
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 contains an "Edit" button, which ...
Ouellette asked 19/11, 2009 at 19:53
2
I'm trying to generate synthetic Javascript events in an Internet Explorer extension, and I'm having trouble getting the fromElement property to stick. Here's an excerpt of my code:
MsHtml.IHTMLDo...
Overcoat asked 4/12, 2008 at 20:37
2
Solved
Windows Form Application – Manipulating input-elements in WinForm WebBrowser
Although I am familiar with HttpWebResponse/HttpWebRequest to login to a website, I was trying it now via using the msh...
1
Solved
I want to use some of the new features of mshtml.dll version 9.0 such as IHTMLCSSRule.
The interop version in the following folder is version 7.0.3300.1:
C:\Program Files\Microsoft.NET\Primary Int...
Mosa asked 2/3, 2012 at 13:7
3
Solved
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 ...
Krouse asked 29/11, 2011 at 14:12
2
I have these two methods to get the current travel log entry and to travel to a log entry retrieved by calling the GetTravelLogEntry method:
public static ITravelLogEntry GetTravelLogEntry(WebBro...
Go asked 29/10, 2011 at 20:54
1 Next >
© 2022 - 2024 — McMap. All rights reserved.