Web Browser
-
Hi I create a Dialog, on place WebBroser control on it. when user insert one media (Window media, Real, QuickTime, Flash). I bulid html string that load Media control(depond on file to insert). And i naviagate form memory use this string (put_innerHtml). this my code: LPDISPATCH lpDispatch = NULL; IHTMLDocument2* lpHtmlDocument= NULL; IHTMLElement* lpBodyElm = NULL; lpDispatch = m_WebCtrlPreview.GetDocument(); if(lpDispatch) { lpDispatch->QueryInterface(IID_IHTMLDocument2, (void**)&lpHtmlDocument); lpDispatch->Release(); } if(lpHtmlDocument) { lpHtmlDocument->get_body(&lpBodyElm); lpHtmlDocument->Release(); } if(lpBodyElm) { BSTR bstrHtml = szHtmlPreview.AllocSysString(); lpBodyElm->put_innerHTML(bstrHtml); SysFreeString(bstrHtml); lpBodyElm->Release(); } szHtmlPrivew is ok, it contains html string to preview media. My Application run well, But when i insert a Quick Time movie (*.mov), it play on Web Browser control, and then i insert another kind of media, my application will appears a critical error. HELP ME Regards Trung Huynh
-
Hi I create a Dialog, on place WebBroser control on it. when user insert one media (Window media, Real, QuickTime, Flash). I bulid html string that load Media control(depond on file to insert). And i naviagate form memory use this string (put_innerHtml). this my code: LPDISPATCH lpDispatch = NULL; IHTMLDocument2* lpHtmlDocument= NULL; IHTMLElement* lpBodyElm = NULL; lpDispatch = m_WebCtrlPreview.GetDocument(); if(lpDispatch) { lpDispatch->QueryInterface(IID_IHTMLDocument2, (void**)&lpHtmlDocument); lpDispatch->Release(); } if(lpHtmlDocument) { lpHtmlDocument->get_body(&lpBodyElm); lpHtmlDocument->Release(); } if(lpBodyElm) { BSTR bstrHtml = szHtmlPreview.AllocSysString(); lpBodyElm->put_innerHTML(bstrHtml); SysFreeString(bstrHtml); lpBodyElm->Release(); } szHtmlPrivew is ok, it contains html string to preview media. My Application run well, But when i insert a Quick Time movie (*.mov), it play on Web Browser control, and then i insert another kind of media, my application will appears a critical error. HELP ME Regards Trung Huynh
wrong forum The word of the day is legs, let's go back to my house and spread the word ;P