I need to evaluate the document from each browser window and act accordingly. I'm using shellwindows to obtain the IwebBrowser2. Then I have access to all the document properties I need. ie...
ShellWindows := TshellWindows.Create(nil);
...
ShellWindowDisp := ShellWindows.Item(Count); //for loop
...
ShellWindowDisp.QueryInterface(iWebBrowser2, WebBrowser);
etc....
This method works fine as far as I can tell. However, if one of the documents change my code will never know it. So I need to monitor Explorer for events such as OnDocumentComplete. Dumping the code above into a timer and comparing properties obviously is not the way to go. I've found several components that capture events but would rather not rely on a third party component for this. Since my knowledge on this area is limited I need to understand what is going on. Any good articles out there that explain how to approach this, preferably with simple source code?