📄 connecting to a running instance of internet explorer.txt
字号:
thanks rriccio@ezpetro.com
Submitted By: Rolando Riccio (2000/10/20)
Browser Helper Object
--------------------------------------------------------------------------------
Will this Browser Helper Object able to retrieve the file name of an image in the web page running in the browser?
Submitted By: HM (2000/07/26)
Go up a level
Comments:
check MSDN - REX (2001/02/15)
Abilities of BHO - Illya Reznykov (2000/08/08)
check MSDN
--------------------------------------------------------------------------------
yes it will , thebrowser helper object , allows u to take 100% control of the the web browser instances , check out themsdn documentation regarding BHO's
Submitted By: REX (2001/02/15)
Abilities of BHO
--------------------------------------------------------------------------------
Generally, this object is able to made with HTML page everything that you want!
Submitted By: Illya Reznykov (2000/08/08)
Problem with multiple instance of IE in different process
--------------------------------------------------------------------------------
When I launch seveval IE (version 5) process (not with File>New Window which only creates a new thread, but with the Windows shell), the three Moniker seems to point to the first IE that has been launched : I get the same URLs for all even if they displays differents URLs
Submitted By: Denis GALIANA (2000/04/07)
Go up a level
Comments:
how did you solve the problem - Kenneth Fleckenstein Nielsen (2001/01/31)
InternetExplorer Object
--------------------------------------------------------------------------------
I'm trying to have an application launch and then manipulate an instance Internet Explorer. The documentation that in Visual C++ 5.0 leaves something to be desired, with respect to this topic. Can anyone help me out?
Thanks.....
Jordon
Submitted By: Jordon (2000/03/18)
Get errors upon compilation."Can not convert ... type to another"
--------------------------------------------------------------------------------
Trying to compile sample code IEHelper from MS I get compilation time errors stating that convertion from
const char * to unsigned short * is impossible. What should I do? Thanks in advance.
Submitted By: Bob (2000/02/09)
Go up a level
Comments:
RE: Get errors upon compilation. - Pat Hensley (2000/02/10)
RE: Get errors upon compilation.
--------------------------------------------------------------------------------
It sounds like you're compiling with the UNICODE flag set,
this will prevent you from passing const char * into certain
Win32 functions, since their prototypes change under UNICODE. You might be using the wrong build configuration (like "Win32 Unicode Release MinDependency). Try changing your build configuration to "Win32 Debug" in Visual Studio and recompile, or just ensure that the UNICODE flag is not set in your build config. Hope that helps.
Submitted By: Pat Hensley (2000/02/10)
How to write a plug-in for internet explorer?
--------------------------------------------------------------------------------
Nothing
Submitted By: Hemakumar (2000/08/21)
Go up a level
Comments:
How to use my own SSL in IE or Netscape? - wpingwp (2000/10/12)
How to write a plug-in for internet explorer? - Hemakumar (2000/08/21)
Can I Use this helper to write plugins for ie?
--------------------------------------------------------------------------------
Hi
Is there any way i can write plugins to ie using this helper
Thanx
Bhushan Ivatury
Submitted By: Bhushan Ivatury (2000/01/28)
Any better way?
--------------------------------------------------------------------------------
It seems that IE helper objects does not work
correctly (at least for IE5.0 Win98).Does any
body know a better way to get notifed for a new
instance of IE and get an interface for that .
How some programs like alexa thirdvoice and ...
works?
Submitted By: Shahryar Eivazzadeh (2000/01/08)
How do i change URL in IE5 by another application
--------------------------------------------------------------------------------
I want change address of destination
(www.yahoo.com->www.codeguru.com) of ie5 in my application.
How can i do it??
thanks
Submitted By: john.xi (1999/12/28)
Go up a level
Comments:
what about netscape browser ? - moshe masas (2000/11/28)
change URL from your Application(be write by Visual C++ 6.0) - HaiNguyen (2000/05/31)
How to ... - Shahryar Eivazzadeh (2000/01/09)
change URL from your Application(be write by Visual C++ 6.0)
--------------------------------------------------------------------------------
#import "shdocvw.dll" exclude("tagREADYSTATE")
void Navigate()
{
if(!AfxOleInit())
return ;
SHDocVw::IShellWindowsPtr m_spSHWinds;
m_spSHWinds.CreateInstance(__uuidof(SHDocVw::ShellWindows));
if(m_spSHWinds != NULL)
{
//Number of running instance of IE.
long nCount = m_spSHWinds->GetCount();
_bstr_t szMyLocationURL("My Location");
for(int i = 0; i < nCount; i++)
{
IDispatchPtr spDisp;
_variant_t va((long)0, VT_I4);
spDisp = m_spSHWinds->Item(va);
SHDocVw::IWebBrowser2Ptr spBrowser(spDisp);
if (spBrowser != NULL)
{
_bstr_t szLocationURL = spBrowser->GetLocationURL();
if(szLocationURL == szMyLocationURL)
spBrowser->Navigate("http://codegugu.developer.com";, &vtMissing, &vtMissing, &vtMissing, &vtMissing);
spBrowser.Release();
}
}
m_spSHWinds.Release();
}
}
Submitted By: HaiNguyen (2000/05/31)
How to ...
--------------------------------------------------------------------------------
read these articles in msdn
"
HOWTO: Connecting to a Running Instance of Internet Explorer
Last reviewed: February 6, 1998
Article ID: Q176792
"
Reusing the WebBrowser Control
"
Submitted By: Shahryar Eivazzadeh (2000/01/09)
IEHelper doesn't compile with Visual C++ 6.
--------------------------------------------------------------------------------
If anyone figures this out and how to get it running with IE5, or finds any sample BHO code, please let me know...
Submitted By: Will Allan (1999/12/13)
Go up a level
Comments:
You can change the Compile mode to Release MinDependency. - Mikezh (1999/12/13)
You can change the Compile mode to Release MinDependency.
--------------------------------------------------------------------------------
Several months ago, I test the IEHelper on win98 + IE5, it didn't run, but yestoday I run it on winnt4 + IE5, it can run, why? If you can test, please tell me whether you meet the same phenomena.
Submitted By: Mikezh (1999/12/13)
Go up a level
Comments:
BHO Registartion---HELP - Suresh Thomas (2000/10/11)
BHO Registartion---HELP
--------------------------------------------------------------------------------
I made a BHO(with Proxy Stub ATL dll) and its is working fine with WinNT IE4/5. It is getting downloaded and installed through inf file in the CAB and registered correctly in Browser Helper object through enhanced rgs file in Windows NT/IE4. But the same is not getting registered and initialised in Win98/1e4(Tested on a lap top).
What may be the reasom
thomas_suresh@hotmail.com
Need Urgent Help
Thankx
Suresh
Submitted By: Suresh Thomas (2000/10/11)
How can I use Browser Helper Objects in IE 5
--------------------------------------------------------------------------------
IEHelper doesn't work on IE5.
Submitted By: Mikezh (1999/12/12)
Go up a level
Comments:
BHO bug in IE5 - H. Falati (2000/04/04)
BHO bug in IE5
--------------------------------------------------------------------------------
There is a bug in IE5.0?, only one (first or first in CLSID order) BHO may be loaded by IE, this is fixed in newer releases.
Submitted By: H. Falati (2000/04/04)
Go up a level
How can I fill edit box on IE page ?
--------------------------------------------------------------------------------
I have Internet Explorer page and on this page is edit box.
I need fill this edit box with text value, but when I want to send windows message, then don't work it.
How can I fill this edit box with text from external program ?
Submitted By: John (1999/11/03)
how do you differentiate between Internet Explorer and Windows Explorer
--------------------------------------------------------------------------------
Doesn't this cause the helper object to be launched if the windows explorer is launched. How do you get it only to start if ie4 is started?
thanks for your help,
mat
Submitted By: Mat (1999/10/27)
Go up a level
Comments:
differentiate between explorer and iexplore - Jürgen Hofmann (1999/12/29)
differentiate between explorer and iexplore
--------------------------------------------------------------------------------
Add something like
if (dwReason == DLL_PROCESS_ATTACH)
{
TCHAR pszLoader[MAX_PATH];
GetModuleFileName(NULL, pszLoader, MAX_PATH);
_tcslwr(pszLoader);
if (_tcsstr(pszLoader, _T("explorer.exe")))
return FALSE;
}
to your DllMain.
Jurgen
Submitted By: Jürgen Hofmann (1999/12/29)
Go up a level
Comments:
Can't find DllMain with ATLWizard made project ... - Denis GALIANA (2000/04/10)
ie and windows explorer - Matthew Schwartz (1999/12/30)
Can't find DllMain with ATLWizard made project ...
--------------------------------------------------------------------------------
Where is DllMain in project done with atlwizard in VC++6 ?
Submitted By: Denis GALIANA (2000/04/10)
Go up a level
Comments:
Uncheck the MFC support to get DllMain() - Allen Sun (2001/01/31)
Uncheck the MFC support to get DllMain()
--------------------------------------------------------------------------------
If you enable MFC support you will get a CSomethingApp instead of getting DllMain().
Submitted By: Allen Sun (2001/01/31)
ie and windows explorer
--------------------------------------------------------------------------------
that's good for ie5 but not for ie4 since they both have the same name.
Submitted By: Matthew Schwartz (1999/12/30)
problem if register 2 of such dll
--------------------------------------------------------------------------------
when there is already 1 of these dll registered, if i try to registered the 2nd similiar one with diff. name and CLSID, the first one will not work!!!
can anyone help?
Submitted By: alan tam (1999/10/12)
Go up a level
Comments:
IE5: bugs for >1 BHO - alantam (1999/10/13)
IE5: bugs for >1 BHO
--------------------------------------------------------------------------------
there is a bug in IE5 with >1 Browser helper object,
IE4 is ok.
just wait for Microsoft's patches!
Submitted By: alantam (1999/10/13)
Go up a level
Comments:
BHO bug - NK (1999/11/11)
BHO bug
--------------------------------------------------------------------------------
This bug exists in IE4 also. If there are 2 BHO registered
no one is initiated!
In IE5 it became a documented feature.
Submitted By: NK (1999/11/11)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -