The official documentation stated that the IWebBrowser2::Stop
method "Cancels a pending navigation or download, and stops dynamic page elements, such as background sounds and animations".
I use a webbrowser control to show some local stuff (files) an remote content (URLs) by means of IWebbrowser2::Navigate2()
. In some circumstances, I need to change the content before the load has finished.
The Stop()
method seem be Ok for that task and indeed stop the load. But after that, the navigation engine seem frozen and unable to respond to new Navigate2()
calls.
The question is: do is there some trickery to restart the control without create a new one?