4
您好我有一個的ActiveX這樣的:當一個activex控件被卸載時,IE發送什麼事件?
class CMyActiveX : public CComObjectRootEx... ... { HRESULT FinalContruct(){return S_OK;} void Start() { // a new thread is created here for some task } void FinalRelease() { // if the thread is alive kill it } }
然而,當瀏覽器關閉方法FinalRelease不叫。所以線程保持活動狀態並在出口處遇到崩潰。
對此有何想法?謝謝!