After I installed my BHO tool bar I couldn't close IE completely. The process will stay in the memory even after I close the window. How can I debug this? Thanks.
myzmlm wrote: > After I installed my BHO tool bar I couldn't close IE completely. The > process will stay in the memory even after I close the window. When SetSite(NULL) is called on your implementation of IObjectWithSite, you must release any interface pointers you might be holding (such as IWebBrowser2 pointer to the hosting browser). -- With best wishes, Igor Tandetnik With sufficient thrust, pigs fly just fine. However, this is not necessarily a good idea. It is hard to be sure where they are going to land, and it could be dangerous sitting under them as they fly overhead. -- RFC 1925
On Mar 20, 1:13 pm, "Igor Tandetnik" wrote: > myzmlm wrote: > > After I installed my BHO tool bar I couldn't close IE completely. The > > process will stay in the memory even after I close the window. > > When SetSite(NULL) is called on your implementation of IObjectWithSite, > you must release any interface pointers you might be holding (such as > IWebBrowser2 pointer to the hosting browser). > -- > With best wishes, > Igor Tandetnik > > With sufficient thrust, pigs fly just fine. However, this is not > necessarily a good idea. It is hard to be sure where they are going to > land, and it could be dangerous sitting under them as they fly > overhead. -- RFC 1925 Thanks for your advise Igor. I realize I have to add one function at one time for bug tracking purpose. :)