Tagged Questions
The iwebbrowser2 tag has no wiki summary.
4
votes
1answer
2k 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 ...
4
votes
2answers
715 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
3answers
438 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. ...
3
votes
4answers
888 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 ...
3
votes
2answers
442 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 ...
2
votes
1answer
135 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
136 views
Why are all references to my IDispatch object not released?
I'm hosting an IWebBrowser2 control in my C++ program using nothing but plain Win32 (no mfc, atl, wtl etc). On DISPID_NAVIGATECOMPLETE2 I add a custom object to be accessed from javascript running on ...
2
votes
1answer
273 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
2answers
310 views
Passing an object from Javascript to C++
I have found Passing an array from Javascript to C++ solution, but I have another task: Passing an object from Javascript to C++ (if I use IWebBrowser2 with IDispatch)
I mean that I need call C++ ...
2
votes
1answer
316 views
IWebBrowser2 and cookies in IE
We use IWebBrowser2 to display web pages but it seems to not able to see the same cookies as normal IE sees.
For example, if I log in Facebook in IE and check on Remember Me, the next time I open IE ...
2
votes
1answer
323 views
IWebBrowser2 and multithreaded apartment?
I am developing a Windows app with WebBrowser control (IWebBrowser2) embedded.
Things look good if I initialize COM apartment as single threaded:
CoInitialize(NULL);
However, if I change it to be ...
2
votes
1answer
143 views
IWebBrowser2 interfaces dependency graph
Is there interfaces dependency graph for IWebBrowser2 component?
I just want to make it clear what kind of dependencies exist between interfaces and who calls who?
2
votes
0answers
338 views
How can I get an IWebBrowser2 reference to the Internet Explorer window opened by clicking on a link?
Suppose I open a new Internet Explorer window by, for example, clicking a link with target="_blank" in the HTML link. Further suppose I'm doing so programmatically via COM. I realize I can attach to ...
2
votes
1answer
454 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.
...
2
votes
1answer
462 views
IWebBrowser2 Quit method fails with a E_FAIL result
I am hosting the web browser control in my own window. Here are the pertinent steps:
CoGetClassObject(CLSID_WebBrowser,
CLSCTX_INPROC_SERVER | CLSCTX_INPROC_HANDLER,
...
2
votes
3answers
488 views
Fork or copy a users browser session in IE
Is it possible to fork a users session (or do something similar) in a Internet Explorer plugin?
I want to process the page the user is on when they click a button in the toolbar. To avoid ...
1
vote
2answers
30 views
C++, web browser control: cannot change encoding/charset
There's a document I'm displaying in a web browser ActiveX control hosted in a C++ app. This document has a META tag that specifies incorrect charset, so the output is funny. I know the correct ...
1
vote
0answers
32 views
Enable local flash in IWebBrowser2 control
I'm trying to load local html pages that contain local flash components using IWebBrowser2 control.
I've put a .cfg file in C:\WINDOWS\system32\Macromed\Flash\FlashPlayerTrust with a path to the ...
1
vote
3answers
75 views
Supressing Script Error in IE8 (C++)
I want to prevent IE from showing JS error dialogs, I read that it can be done by setting
ScriptErrorsSuppressed = true.
Where exactly do I set it in IWebBrowser2?
Thanks
1
vote
1answer
130 views
Detecting CTRL+Click in Webbrowser Control
Ok! Here is the situation I have a application using Webbrowser Control, I want to detect the click events for anchors in web page. I dont need code, just the directions to look into.
Edit
I ...
1
vote
1answer
419 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 ...
1
vote
1answer
548 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 ...
1
vote
0answers
63 views
Mouse dragging in IWebBrowser2 and Become disconnected socket
create IWebBrowser2 as child window into game.
select a text in the WebBrowswer and click the selected block and mouse move.
the game window(parent window of WebBrowser) stop like stopping message ...
1
vote
1answer
175 views
How can I access the JavaScript global object (“window”) inside an embedded browser object (the IWebBrowser2 interface)?
I have an HTML page which embeds an IWebBrowser2 ActiveX (i.e. the control is essentially an Internet Explorer browser). I need to write JavaScript in this HTML page which will remove any ...
1
vote
0answers
221 views
How to get the URL for which downloadBegin() event is fired?
am attempting to create a custom web browser based on the WPF Web browser control. I have implemented the IWebBrowser2 com interface and implemented the handlers for Navigating(), NavigatedTo() and ...
1
vote
1answer
380 views
Overriding window.location on Webbrowser Control
This might seem a weird question, but is there a way to override the window.location without making the browser control navigate to it? The problem I am having is that i am injecting html code in the ...
1
vote
2answers
403 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
1answer
507 views
How to get my IHttpNegotiate implementation called by IWebBrowser?
I use cwebpage_src code and I need to update some HTTP request headers while clicking on links. As I understand it can be done with self implementation of IHttpNegotiate->BeginTransaction. But how to ...
1
vote
1answer
177 views
Canceling all existing HTTP requests in Internet Explorer/IWebbrowser
I'm automating an Internet Explorer window using the IWebBrowser API. Is there a way to cancel all outstanding HTTP requests in IE/IWebbrowser?
I've tried the following and none of them work.
...
1
vote
1answer
655 views
How can I create a WebBrowser control (ActiveX / IWebBrowser2) without a UI?
I cannot figure out how to use the WebBrowser control without having it create a window in the taskbar.
I am using the IWebBrowser2 ActiveX control directly because I need to use some of the advanced ...
1
vote
1answer
308 views
Launch IE with specific BHO enabled
I have a IE BHO plugin that I only want to be enabled when the user launches IE from my program (The program starts IE using CreateProcess()).
I don't want this BHO to be enabled when a user launches ...
1
vote
0answers
351 views
After Navigate2 Method returns S_OK Stuck at READYSTATE of READYSTATE_LOADING
I am working on a MFC Document View architecture application which has multiple documents and views and a tabbed window interface.
I have been tasked with making an automatic switch to another tab on ...
1
vote
1answer
159 views
Manifest or Theme/Style for a IWebBrowser2 control?
The IWebBrowser2 control has password edit boxes which are squares. This happened many years ago if you were on an XP machine, and you had a password edit field without a manifest file, you would get ...
1
vote
1answer
624 views
Disable the “Internet explorer is not currently your default browser” warning when using IWebBrowser2
I have a MFC application that launches a IWebBrowser2 window. On users computers where Internet Explorer is not their default browser they get the following warning message
"Internet explorer is not ...
1
vote
2answers
333 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
2k views
How to attach an event to IHTMLDocument2 link elements in Delphi?
I'm using this code to get all the links from an IHTMLDocument2:
procedure DoDocumentComplete(const pDisp: IDispatch; var URL: OleVariant);
var
Document:IHTMLDocument2;
Body:IHTMLElement;
...
1
vote
2answers
758 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
2answers
55 views
Can't figure out how to host web browser (e.g. IWebBrowser2) in Win32 dialog. ATL okay, no MFC
I'm attempting to host a web browser inside a dialog. I am using C++ with Win32 and ATL, no MFC. There is an ActiveX control (IWebBrowser2) that implements this functionality. The trick is it ...
0
votes
0answers
86 views
How can I suppress Webbrowser from showing its own document has changed dialog so I can use my own dialog?
I use my own dialog to show that a Webbrowser document has changed before loading a new document. But by default, the webbrowser display's its own dialog to report the same. How can I suppress ...
0
votes
2answers
110 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 ...
0
votes
0answers
22 views
How to retrieve the Certificate when using IWebbrowser2 with C++
When browsing to a https URL, IE shows different consent dialogs because of certificate.
Does someone knows whether (how) it is possible to programatically retrieve an interface to the Certificate ...
0
votes
1answer
168 views
WatiN, Internet Explorer launching and IWebBrowser2 Window Handle
I was studying the following piece of code from WatiN which handles launching and attaching to Internet Explorer:
private static IEBrowser CreateIEPartiallyInitializedInNewProcess(Uri uri)
{
...
0
votes
1answer
115 views
IWebBrowser2 IHTMLDocument2 CTRL+F dialog appears but finds no matches
I'm generating HTML pages from strings stored in a database by using the IHTMLDocument2 write(SAFEARRAY) method. This works OK.
When CTRL+F is pressed the Find dialog appears as expected, but there ...
0
votes
1answer
83 views
IPersistStreamInit::Save() not working in IE9?
This code worked for IE8 and earlier. For IE9 it seems that IPersistStreamInit::Save() returns E_NOTIMPL. Any help is greatly appreciated!
HRESULT CHtmlCtrl::GetDocumentHTML(CString& strHTML) ...
0
votes
0answers
46 views
analog for CHtmlView::GetApplication() in WTL?
I know application in MFC with CHtmlView which embedded IWebBrowser2 and
than DISIP_NEWWINDOW2 event occurs it is possible to open new window in the same
component.
Something like this
void ...
0
votes
2answers
239 views
Make IWebBrowser2 Control safe for scripting
I'm using IWebBrowser2 control in my application to display external web pages.
The problem is that the object is not safe for scripting and calls to get_Document fails (with S_FALSE as return value).
...
0
votes
0answers
150 views
Getting active document HTML code in BHO doesn't work if called asynchronously
I use following code to get in touch with IWebBrowser2.
HRESULT CViewSource::SetSite(IUnknown *pUnkSite)
{
// Retrieve and store the IWebBrowser2 pointer
m_spWebBrowser2 = ...
0
votes
0answers
167 views
Internet Explorer COM API — disable action bar
I work on an automated process that captures screenshots of various websites based on user options using Internet Explorer 9. However, in some cases, the yellow bar at the bottom of the screen (I ...
0
votes
0answers
185 views
IE BHO browser extension: how to get cookies when they're set, removed, etc
I'm writing an extension for Internet Explorer, and am wondering how to programmatically detect in a session what cookies get set, deleted, modified, etc. per domain.
I understand that cookies are ...
0
votes
0answers
325 views
How to catch all HTML events using IWebBrowser2 in a BHO
I'm trying to build a web user activity recorder by writing a BHO for IE, in order to create functional test scripts out of it, and automatically run them later.
I've successfully managed to make a ...