Internet Explorer Extension Development,28 - Internet Explorer Development,
Recent update: 2008-3-21

"IWebBrowser2::ToolBar Property" broken in IE7 RC1 ?

2916 byte By Arnuntar at 2008-3-7
If some java script hide my toolbar i use the following code to show it :STDMETHODIMP CSMBar::DocumentComplete(IDispatch* pDisp, VARIANT* URL){ CComPtr<IWebBrowser2> pWebBrowser(m_pReflectWnd->GetToolBar().GetBrowser()); if(pWebBrowser != NULL) { BOOL bIsFeature; VARIANT_BOOL ...

my binarycode cannot add new object in window, but javascript can do.

1722 byte By kevin7776 at 2008-3-6
in javascript,we can add a new object in the window like this:<script language=javascript>window.testObj=new ActiveXObject("XXX.YYY");window.testObj.dosomething();</script> .I want directly add a new object in the window in my BHO through the IDispatchEx, but I always get ...

How to automate selection of items from list using vb.net

7487 byte By satish_k at 2008-3-5
FYI . I am pasting the code from the code behind form Imports mshtml Imports SHDocVw Imports Automation Imports InternetMacros Imports System.Threading Public Class Form1 Inherits System.Windows.Forms.Form #Region " Windows Form Designer generated code " Public Sub New() ...

Why cannot BHO receive the DocumentComplete(DISPID_DOCUMENTCOMPLETE) event again when I refr

336 byte By kevin7776 at 2008-3-3
I have written a bho object and sinked the events of IE.when navigate to a new page,bho can receive the documentcomplete event.but when I refresh the current page, bho cannot receive the event again,while bho can receive other event well. (I am sure then I havenot Unadvised the events)who could ...

Want to replicate Flash player...

826 byte By Obrzut at 2008-3-1
Hi,I would like to start development on a simple interface for opening a window in Internet Explorer which can be manipulated by a data script. This, in all respects, is what 'Flash' does. But, can some one please explain a starting point for a programmer unfamiliar with the Windows O/s to ...

Dont Fire NewWindow3 when new TAB is opened by CTRL+T.

693 byte By wangzhong at 2008-2-28
Our team have made a synchronous tools for IE( http://www.syncplus.net/en/ ).Recently, I am doing an upgrade for IE7 in Vista RC1, but have a problem about the NewWindows3 event.The NewWindows3 event is fired by the following case.1)Choose the "Open in New Tab" command from a link's ...

Manipulate page in a frame from JScript in IE6

296 byte By Hans-GeorgMichna at 2008-2-27
In IE6, is it possible to manipulate a web page that's loaded in a frame from JScript in the master page? Access to the DOM and to click events would be most interesting. If not, I guess I'll have to write an ActiveX control (and come back with more questions :-). Hans-Georg

Listening to IE events

480 byte By sumitmehrotra at 2008-2-26
hi ,i am trying to advise my event sink to the internet explorer 6.0.the problem i am facing is the explorer calls the invoke method on the event sink with the dispatch id DISPID_COMMANDSTATECHANGE, and it does this four times. after that it doesnt responds to any eventplease tell me how to ...

Development using visual C# -->Weak named dlls in GAC

1347 byte By prayag at 2008-2-25
Hi guys,I am trying to develop an IE toolbar using C# using the Pavel Zolnikov's BHO method given here :- http://www.codeproject.com/csharp/dotnetbandobjects.asp?df=100&tid=1608121&forumid=3788&exp=1&mpp=50&select=1608121#xx1608121xxand VS 2005 version given ...

IE7 protected mode hWnd problem

467 byte By MeniB at 2008-2-24
hello,i'm trying to get the hWnd of a IWebBrowser2 control.if i'm working on xp, everything is ok.but with Vista - things different. hWnd returned is not valid. (IsWindow - fails)any ideas why?It seems to me that because if you run iexplorer.exe in Protected mode, it runs ieuser.exe and it ...

Clear IE History From C#

125 byte By xRuntime at 2008-2-23
How can I do this? I've tried a bunch of foreach statements, even tried some Win32 stuff, and I havent been able to do it...

Getting Mouse Events for BHO

462 byte By k6386 at 2008-2-22
Hi,I'm making a BHO for IE written as a COM dll in C++. I was wondering if there was a way to trap mouse events like mouseover a link, mouseout of a link etc. The only way I can think of now is to embed a javascript code in the document, but that's pretty messy and I am not totally ...

Passing MSXML document to a activex control using JScript

286 byte By smk_k at 2008-2-22
I want to pass a MSXML document to an activex control using JScript. I have tried it but it sends a IDispach pointer. I also need to convert the passed xml document in to a string. Is there anyway that I can chaneg the passed IDispatch pointer to IXMLDocument or something like that.

Development using visual C# -->Weak named dlls in GAC

1347 byte By prayag at 2008-2-21
Hi guys,I am trying to develop an IE toolbar using C# using the Pavel Zolnikov's BHO method given here :- http://www.codeproject.com/csharp/dotnetbandobjects.asp?df=100&tid=1608121&forumid=3788&exp=1&mpp=50&select=1608121#xx1608121xxand VS 2005 version given ...

IE 7 RC 1 and scrolling div. Need Help ASAP!!

540 byte By idahogurl at 2008-2-20
I've got a problem with IE 7 RC 1 and my web site. I open my web site in a tab and then open another tab and go anywhere (Yahoo or Google). I sit on that tab for a while and then go back to my web site. The table expands and looks awful.I've included the link to the one of the pages with the ...

Manipulate page in a frame from JScript in IE6

296 byte By Hans-GeorgMichna at 2008-2-19
In IE6, is it possible to manipulate a web page that's loaded in a frame from JScript in the master page? Access to the DOM and to click events would be most interesting. If not, I guess I'll have to write an ActiveX control (and come back with more questions :-). Hans-Georg

Extension loading/unloading

910 byte By KaranMG at 2008-2-18
I have written a VB program which parses through all the open IE windows and allows me to access information from them (events, title, progress, etc.). I wrote this program as a proof-of-concept to find out if it was possible to get relevant information from already open IE windows.What I want ...

IConnectionPoint::Unadvise fails in IE7

685 byte By rdeal at 2008-2-17
Hello,We are testing our BHO with IE7 (7.0.5700.6). Upon browser startup, the BHO calls IConnectionPoint::Advise. At browser shutdown, it calls IConnectionPoint::Unadvise with the same cookie returned by Advise. Unadvise is returns CONNECT_E_NOCONNECTION. One observation is that if I call ...

BHO sample code?

572 byte By WilliamPHenryJr at 2008-2-16
Hi, all! I've found the BHO article on MSDN (the browser the way you want it)...but it mentions source code and provides no link. I need to make a BHO for a school project, and in this class it's perfectly acceptable to modify sample code. Can someone point me toward either a C++ or a C# ...

How to catch certain browsing events

1287 byte By DavideMagistri at 2008-2-15
Hi everyone,i'm currently developing a BHO with ATL as i'm in need to write an application that would record the interaction between a user and the browser while surfing the internet.With my BHO i'm able to get notification of the events thanks to the DIID_DWebBrowserEvents2 interface. This ...

Selectively Removing IE History

311 byte By BarleyGarlic at 2008-2-15
Hi all.Is there a way to effectively traverse the URL history and selectively delete entries (our pages) from it. We have a web based application that uses a client side ActiveX control, so we have full access to the Windows API.Any help or direction would be greatly ...

Why cannot BHO receive the DocumentComplete(DISPID_DOCUMENTCOMPLETE) event again when I refr

336 byte By kevin7776 at 2008-2-15
I have written a bho object and sinked the events of IE.when navigate to a new page,bho can receive the documentcomplete event.but when I refresh the current page, bho cannot receive the event again,while bho can receive other event well. (I am sure then I havenot Unadvised the events)who could ...

WebBrowser Control not loading java applet (xp sp2)

891 byte By dapi at 2008-2-15
Hi,I am having a mfc exe with webbrowser control in a dialog. when i navigate to a page containing a java applet, it doesnt download/activate the applet. I'm just wondering if someone has encountered this issue?my machine config is as follows:Win XP Pro SP2IE 6JRE 1.5points of interest:1) When ...

BHO works in IE6 but not IE7

677 byte By PatrickMa at 2008-2-15
Hi, I have a BHO that is written in VB.The BHO works in IE6 but not IE7.The place it fails in IE7 is that it does not perform the Navigate2 method correctly.I tried changing the 2nd parameter in Navigate2 to different values according to MSDN documentation. It yield different results.Thus, I ...

One Instance of Band Object

229 byte By cablehead at 2008-2-14
Is it possible? I have a vertical band object that plays an mp3 file... If newwindow2 pops another window....when closed...it will also stop my mp3. I have code to stop the mp3 in my quit event. TIA

Dont Fire NewWindow3 when new TAB is opened by CTRL+T.

693 byte By wangzhong at 2008-2-14
Our team have made a synchronous tools for IE( http://www.syncplus.net/en/ ).Recently, I am doing an upgrade for IE7 in Vista RC1, but have a problem about the NewWindows3 event.The NewWindows3 event is fired by the following case.1)Choose the "Open in New Tab" command from a link's ...

Passing JScript string array to Activex

147 byte By smk_k at 2008-2-13
I want to pass an <strong>JScript string array</strong> to <strong>java script</strong>. Can anyone explain me how to do it. Thanks

Auto filling HTML Page using C#

1761 byte By prayag at 2008-2-13
Hi,I am developing an IE plugin which will auomatically provide username and password to web pages on click of a button. I was trying to develop a dummy button to test the approach and am trying to use HTMLInputElementClass. The code compiles well but gives a run time exception in the browser. ...

Why cannot BHO receive the DocumentComplete(DISPID_DOCUMENTCOMPLETE) event again when I refresh

344 byte By kevin7776 at 2008-2-12
I have written a bho object and sinked the events of IE.when navigate to a new page,bho can receive the documentcomplete event.but when I refresh the current page, bho cannot receive the event again,while bho can receive other event well. (I am sure then I havenot Unadvised the events)who could ...

my binarycode cannot add new object in window, but javascript can do.

1731 byte By kevin7776 at 2008-2-11
in javascript,we can add a new object in the window like this:<script language=javascript>window.testObj=new ActiveXObject("XXX.YYY");window.testObj.dosomething();</script> .I want directly add a new object in the window in my BHO through the IDispatchEx, but I always get ...

WebBrowser Control not loading java applet (xp sp2)

899 byte By dapi at 2008-2-10
Hi,I am having a mfc exe with webbrowser control in a dialog. when i navigate to a page containing a java applet, it doesnt download/activate the applet. I'm just wondering if someone has encountered this issue?my machine config is as follows:Win XP Pro SP2IE 6JRE 1.5points of interest:1) When ...

IE 7 Quick tab problem

378 byte By EvgeniyKosmin at 2008-2-10
Hello, I'm writing ActiveX control which contains some standard windows controls such buttons, listboxes and so on. I found that such controls can not be seen on IE 7 quick tabs whereas other controls represented by OnDraw event are shown normally. How it is possible to provide quick tabs ...

Selectively Removing IE History

319 byte By BarleyGarlic at 2008-2-8
Hi all.Is there a way to effectively traverse the URL history and selectively delete entries (our pages) from it. We have a web based application that uses a client side ActiveX control, so we have full access to the Windows API.Any help or direction would be greatly appreciated.-BG ...

BHO works in IE6 but not IE7

688 byte By PatrickMa at 2008-2-8
Hi, I have a BHO that is written in VB.The BHO works in IE6 but not IE7.The place it fails in IE7 is that it does not perform the Navigate2 method correctly.I tried changing the 2nd parameter in Navigate2 to different values according to MSDN documentation. It yield different results.Thus, I ...

Open new tab

146 byte By McAuliffe at 2008-2-7
Is there a setting that will open a new tab when a URL is entered in the address bar? Cuurently, it will write over the existing web page. </span>

Dont Fire NewWindow3 when new TAB is opened by CTRL+T.

679 byte By wangzhong at 2008-2-7
Our team have made a synchronous tools for IE( http://www.syncplus.net/en/ ).Recently, I am doing an upgrade for IE7 in Vista RC1, but have a problem about the NewWindows3 event.The NewWindows3 event is fired by the following case.1)Choose the "Open in New Tab" command from a link's ...

IE7 protected mode hWnd problem

475 byte By MeniB at 2008-2-7
hello,i'm trying to get the hWnd of a IWebBrowser2 control.if i'm working on xp, everything is ok.but with Vista - things different. hWnd returned is not valid. (IsWindow - fails)any ideas why?It seems to me that because if you run iexplorer.exe in Protected mode, it runs ieuser.exe and it ...

IE7 development questions

388 byte By Anatolik at 2008-2-7
Greetings to everybody.I'm currently updating my BHO for IE7 support, and have several questions.I have to handle mousemove/mouseout event for padlock button, which designed for secure connections.Is there any option available instead of subclassing ?Where can i get Platform SDK which will ...

Missing History in IE7

104 byte By melcrewe at 2008-2-6
Anyone explane why my history does not show ive checked that the folder is still there mel

special character as a part of searchbar label

389 byte By vipulparmar at 2008-2-6
Hi, I am trying to add a search engine in my IE7 searchbar. I developed XML file as per reference. Now when I am giving special character "?" (E.g. "s?ckening" in <shortname> container tag then it raises an error. Please suggest me a way to display search engine label ...

Vist or IE7 and Cookies

596 byte By WayneSepega at 2008-2-5
I have an application that uses the webbrowser component and when launched goes to a website. Previously I’ve navigated to the web site and set the cookie to remember who I am so I no longer have to log in. However, in my application I am still required to log in. This app worked fine under XP, ...

Lan conection settings

240 byte By melcrewe at 2008-2-5
Since I installed IE7 my lan conection settings keep changing the Auto find keeps unchecking its self can you tell me how to fix this problem <a title="mailto:melcrewe@hotmail.com" href="mailto:melcrewe@hotmail.com">melcrewe@hotmail.com</a>

Data Exchange between IE and Office 2003

771 byte By ClaudiaHelpOnVSTO at 2008-2-4
Hi,I wouldlike to access from MS Word 2003 a Web browser page such as Internet Explorerwhich is running at the same time on the client machine.Orgenerally speaking, how can I see and access with .NET applications running onthe client machine?And is there amethod or propery which will allow me ...

Developing application hosting multiple Tabbed Browser using WebBrowser Control

1439 byte By kazu_jp at 2008-2-4
Hellow !I want to develope application hosting multiple Tabbed WebBrowser using WebBrowser Control.I developed application hosting WebBrowser Control , but this has no tab browser .hosting WebBrowser code is shown below .CWebBrowser2* pBrowser2pBrowser2->Create(NULL, L"", ...

IE7 protected mode hWnd problem

467 byte By MeniB at 2008-2-4
hello,i'm trying to get the hWnd of a IWebBrowser2 control.if i'm working on xp, everything is ok.but with Vista - things different. hWnd returned is not valid. (IsWindow - fails)any ideas why?It seems to me that because if you run iexplorer.exe in Protected mode, it runs ieuser.exe and it ...

Why does IE7 always popup the prompt window in vista?

1159 byte By kevin7776 at 2008-2-4
I have created a BHO and a Broker process, and I want the BHO can access the broker process without prompt. Therefore I add a key and values into the Registry , so that I can silently elevate the broker process to medium integrity level.more infomation for "elevate policy" ,please see ...

Problem using activex control in two instances of IE

239 byte By smk_k at 2008-2-3
I have written a activex control. It works fine with a single instance of IE. But if there are two instances of IE, using the same activex the second instance of IE crashes. Can anyone explain why this is happening. Thanks.

Is it possible to get raw HTTP requests and responses in my own Explorer Bar

235 byte By ldev at 2008-2-3
I wanna develop an Explorer Bar for IE to intercept <strong>RAW </strong>HTTP requests and responses. These includes raw data initiated by the URL entered in IE address bar, and images' URLs within that main HTML file. Is it possible?

Develop Activex to call from JScript

233 byte By smk_k at 2008-2-2
I want to develop an ActiveX so that I can access it from the JScript. I know there is a method CreateActivex() in JScript. Do I have to add special interfaces for my activex, in order to use this method. Thanks

AdBlock for IE

1035 byte By Cout at 2008-2-2
I write something like adblock for ie. It has to parse the page, find unwanted ads and replace them with wanted ads.The problem i faced is when to parse and what to parse.My first idea was to do parsing in a temporary mime filter, but in this case there is a lot of "unresolved" code ...