The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
1answer
6k views

Calling C++ function from JavaScript script running in a web browser control

I have embedded a web browser control in my c++ application. I want javascript running in the web browser control to be able to call a c++ function/method. I have found mentions of three ways to do ...
8
votes
1answer
1k views

Javascript in Delphi TWebBrowser, Closing Threads

I am attempting to build a system in delphi that allows users to use Google Maps. It all works fine, but i'm noticing that every time a new TWebBrowser object is created and the javascript that ...
4
votes
5answers
2k views

IWebBrowser2: how to force links to open in new window?

The MSDN documentation on WebBrowser Customization explains how to prevent new windows from being opened and how to cancel navigation. In my case, my application is hosting an IWebBrowser2 but I don't ...
4
votes
2answers
1k 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 ...
2
votes
1answer
1k views

How do I redirect the TWebBrowser control to a custom URL?

Example: I navigate to http://www.stackoverflow.com with my web browser control there's a link to FAQ in the top bar, with target http://stackoverflow.com/faq I need to redirect e.g. to the ...
2
votes
1answer
2k views

IWebBrowser2 object uses IE7 version, instead of the IE version installed on the machine

I'm developing on a Win7 machine with IE8 browser (same thing occurs also on IE9). I've create an application with an IWebBrowser2 object embedded within a native window. Within that browser object ...
2
votes
1answer
982 views

Printing to a specific printer using the IE control without changing the default printer

Is there a way for me to pass a PrintDlg structure (or something similar) to my WebBrowser (Internet Explorer / IWebBrowser2) control such that it will print to the printer specified in the PrintDlg ...
3
votes
1answer
926 views

How do I add an event listener using MSHTML's addEventListener in IE9?

The MSDN documentation for addEventListener says it accepts a callback function in the form of an IDispatch * object. From C# (I'm using COM interop), Visual Studio displays the parameter type as just ...
3
votes
2answers
673 views

How do I render the scrollable regions of a canvas with IViewObject::Draw?

I've been trying to render the entire canvas in an IWebBrowser2 control to a bitmap. IViewObject::Draw seems to be the most promising approach, but I can't get it to render anything that would ...
1
vote
2answers
888 views

Returning string to JavaScript from C++ function

I have a class (JSObject) that implements the IDispatch interface. The class is exposed to JavaScript running in my hosted web browser control (IWebBrowser2). See more here about how this works: ...
1
vote
2answers
644 views

Is there any way to draw Webbrowser content to a specific DC?

These days, I tries to create a hiden WebBrowser control in my program, and Using the IViewObject interface draw to my custom DC. The result is fine, I got All the content I want, but the Draw speed ...
1
vote
2answers
1k views

IWebBrowser2 issues - how to open documents in new windows?

Hello I have IWebBrowser2 ctrl embedded into my own dialog. I want to simply display a promo banner within it from my url. How to disable all popup menu items from the control and force it to open ...
0
votes
1answer
730 views

Sinking DWebBrowserEvents2 events appears to hang programmatic navigation

I posted this question on the MSDN forums, but my experience has been a better quality of answer here on Stack Overflow, so I'm posting here as well. As I've posted several times before, I'm working ...
4
votes
3answers
835 views

C++ COM design. Composition vs multiple inheritance

I'm trying to embed a browser control in my application (IWebBrowser2). I need to implement IDispatch, IDocHostShowUI, IDocHostUIHandler etc to make this work. I am doing this in pure C++/Win32 api. ...
2
votes
3answers
816 views

How to Cleanly Destroy WebBrowser Control

I am using ATL in VisualC++10 to host browser control. My code is similar to this example: http://msdn.microsoft.com/en-us/library/9d0714y1(v=vs.80).aspx Difference is I have main window and then ...
2
votes
1answer
766 views

Tab key support in an IWebBrowser2 control

I have an embedded IWebBrowser2 control using straight C++ (windowed, not windowless) and when someone hits the Tab key to go between fields in the browser, it jumps focus out of the web browser. ...
0
votes
0answers
99 views

How to stop running an unresponsive script for a CAxWindow -> IWebBrowser2->Navigate

I am hosting a browser control in an ATL exe using CAxWindow::CreateControl(). Then I query for IWebBrowser2 interface and Navigate to an URL. After I call IWebBrowser2->Navigate, I do check for ...
0
votes
0answers
117 views

GetHtmlFromHwnd doest not work from inside Internet Explorer

I'm trying to use the well known "GetHtmlFromHwnd" function from inside Internet Explorer, in a hook dll for a password spy application. The function works well if I use it from an application outside ...
0
votes
2answers
1k views

Specify User Agent for WPF WebBrowser Control

I need to alter the default User Agent used by the WPF WebBrowser control. I have looked at the properties of the IWebBrowser2 object behind the control, and tried specifying the user agent by ...