Help without ATL or MFC
-
Hi everybody I am developing an internet explorer toolband, with many functions, one of them a popup blocker button. I was searching in the examples, but all the examples have ATL or MFC functions, and i need do all that things without using any ATL or MFC functions. If anybody can helpme i will be gratefull
-
Hi everybody I am developing an internet explorer toolband, with many functions, one of them a popup blocker button. I was searching in the examples, but all the examples have ATL or MFC functions, and i need do all that things without using any ATL or MFC functions. If anybody can helpme i will be gratefull
Without using MFC and ATL u will need to lots of stuff by ur self. Must rewrite all the MFC function used in ur program . And if u mean to create a pop-up blocker might be u need to use window messages so win32 can come to ur resuce. DLL's can help u but i cant say it for sure Vikas Amin Embin Technology Bombay vikas.amin@embin.com
-
Hi everybody I am developing an internet explorer toolband, with many functions, one of them a popup blocker button. I was searching in the examples, but all the examples have ATL or MFC functions, and i need do all that things without using any ATL or MFC functions. If anybody can helpme i will be gratefull
neliocc wrote:
. I was searching in the examples, but all the examples have ATL or MFC functions,
Buddy, it would be easier if you use ATL to develop toolband application for IE, as IE provide automation support for same. but if you still insist on using pure Win32 Api, here is hint... you have to create the dll, which contain the Window Which subclass main window for Window Message... also another application which inject this dll into process space of IE ( for that you have to create system wide hooks). not the easy task, but i believe thats the only way to get there. you have to Hook the system for IE instance...
"Opinions are neither right nor wrong. I cannot change your opinion. I can, however, change what influences your opinion." - David Crow
cheers, Alok Gupta VC Forum Q&A :- I/ IV
-
Hi everybody I am developing an internet explorer toolband, with many functions, one of them a popup blocker button. I was searching in the examples, but all the examples have ATL or MFC functions, and i need do all that things without using any ATL or MFC functions. If anybody can helpme i will be gratefull
I think you should look into creating a Browser Helper Object (BHO).