Originally posted by: Srinivas Divi
Hi All,
Its no doubt that data transmission through internet is via packets. Is there any way to capture the data, packet by packet? My purpose is to capture each and every data packet to do some processing. How can I do that? Any suggestions and locations where I cant get enough information are welcome.
Thanks in advance !!
Srinu
ReplyOriginally posted by: BurningBunny
2. Notice the statement: "CWebBrowserApp browser;".
3. "CWebBrowserApp" refers to a "IWebBrowser2" interface.
4. Look up "IWebBrowser2" on MSDN and browse it's members.
5. Almost all pop-ups can not be resized.
6. "IWebBrowser2" has a member called "Resizable".
7. Assume all non-resizable windows are pop-ups.
8. Close suspected pop-ups with the "Quit" member.
9. Code to add to Peters example:
/* Begin Code Snip */
BOOL bResizable;
// browser.DetachDispatch();
10. If your experienced enough to build the COM object, you should be able to impliment this code.
11. Please, DO NOT email me asking how to do something.
~BurningBunny
1. Look at Peter's example of how to use his code.
(Insert after "browser.AttachDispatch(pDispatch);", line 23)
//{
// browser.AttachDispatch(pDispatch);
if(browser.GetResizable(&bResizable) == S_OK) {
if(bResizable == VARIANT_FALSE) {
browser.Stop(); // Stop loading the page.
broswer.Quit(); // Close the window.
}
}
// pDispatch->Release();
// }
/* End Code Snip */
Originally posted by: Joe
Hi all,
how can I create my own IE plugin like Flash?...
thx
Reply
Originally posted by: Rupankar
Hi,
I need a serious help.I have written an activex control which changes the default drop behaviour of IE in which my control is loaded.For this I am Using the shodocvw.dll and finding all running instances of IE and from the UserControl parent property I am determining the IE instance which has the activeX loaded.After determining I am changing the RegisterasDropTarget property to False(at Run Time).All this is done in the UserControl show event.How ever there is a serious problem.After opening the html page in IE if i drop a .txt file in the browser (then the browser is opening it).This is the default behaviour of IE which i want to Override.Then if I click back and then again drop the .txt file then I see that the default behaviour is overridden (as expected).Amazingly If I load the same html file in a WEbBrowser Control inside a VB form and change the RegisterasDropTarget property to false(design time) then it is working perfectly from the beginning.
Can Anybody help me get a solution on this.I cannot proceed further with my ActiveX Control before resolving this bug.
Thanks and Regards
Rupankar
Hi, I have a similar kind of problem, I want to execute some javascript on my webpage when , the dragged object is dropped on the browser window. The object can be dragged from filesystem/desktop and dropped in the browser. Instead of opening the object in the browser, we need to execute the javascript. If you have the solution please reply(agrawvis@gmail.com)Reply
Originally posted by: nnoydb
My question isn't simple I have spend some time attempting to locate a answer but have found little or no information. I would like to know how to "listen"/"snoop" on applications using a embedded IE window/MSHTML control. These application have implemented their own "window" or frame in a MDI application that acts as a browser gateway. A exmple of such a application is the MSDN Library application.
Noydb
Originally posted by: Larsson
\Larsson
Please help me with this sombody, I need it to work like this but I need to now is the computer is connected to the internet!
Originally posted by: Hemakumar
Hello !
My name is Sasha Kroch.
if you write plugin for Internet Explorer please
write me how did you do it.
Reply
Originally posted by: Oren Farber
Hi
I create a connection using CSocket the problem is that the Create method cause the Dial-up dialog to appear. Is there any way to verify that the computer is already connected?
Thanks
Originally posted by: New comer
How can i redirect to another URL when user types some blocked URL
ReplyOriginally posted by: Murugan
Can anyone let me know what is the definition of the class CWebBrowserApp which have been used in this
class and what is its functionality ?
Thanks in Advance
Murugan