tags:

views:

73

answers:

1

Is any way to handle a WebBrowser control event when HTML page is started to render?

Edit. For example, in asp.net we have OnRender, OnPreRender, OnLoad, OnPreLoad events of web-page life-cycle. OnLoad in asp.net is something like Navigated for WebBrowser, the idea is to handle event similar to OnPreRender.

+1  A: 

You can handle events from the DWebBrowserEvents2 Interface. http://msdn.microsoft.com/en-us/library/aa768283(VS.85).aspx

jaws