vote up 0 vote down star

I am trying to create an mshtml document object from an html buffer. But when the following code is executed it is invoking internet explorer window. How do I prevent it invoking IE.

#include <atlbase.h>
#include <mshtml.h>


CoInitialize(NULL);

CString strHTMLCode = _T("<html><head><script language=\"JavaScript\">{top.location.href=\"index.php\"}</script></head><body></body></html>");

CComPtr<IHTMLDocument2> pDoc;
HRESULT hr = CoCreateInstance(CLSID_HTMLDocument, NULL, CLSCTX_INPROC_SERVER, IID_IHTMLDocument2, (void**)&pDoc);

SAFEARRAY* psa = SafeArrayCreateVector(VT_VARIANT, 0, 1);
VARIANT *param;

hr = SafeArrayAccessData(psa, (LPVOID*)¶m);
param->vt = VT_BSTR;
param->bstrVal = strHTMLCode.AllocSysString();

hr = pDoc->write(psa); //This line invoks internet explorer window.
hr = pDoc->close();
flag

75% accept rate
What are you trying to accomplish? Have you noticed that If you remove the javascript, IE is not launched? – rec May 1 at 0:15
I was writing an application to parse web pages using IHTMLDocument2 interface. I observed that when I parse certain web pages which contins java script, it invoked the IE window from my application. Basically I want to parse web pages silently using IHTMLDocument2. – Shino C G May 4 at 6:26

Your Answer

Get an OpenID
or

Browse other questions tagged or ask your own question.