up vote 1 down vote favorite
share [g+] share [fb]

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();
link|improve this question

60% accept rate
What are you trying to accomplish? Have you noticed that If you remove the javascript, IE is not launched? – rec May 1 '09 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 '09 at 6:26
feedback

1 Answer

Please try the codes below.

CoInitialize(NULL);

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

// get persist stream init
ComQIPtr<IPersistStreamInit> psi = doc;

// allocate memory
HGLOBAL hMem = ::GlobalAlloc(GPTR, strHTMLCode.GetLength() * sizeof(TCHAR));
::GlobalLock(hMem);
::CopyMemory(hMem, (LPCTSTR)strHTMLCode, strHTMLCode.GetLength() *  * sizeof(TCHAR));

// create stream
IStream* stream = NULL;
HRESULT hr = ::CreateStreamOnHGlobal(hMem, FALSE, &stream);
if (SUCCEEDED(hr))
{
    // load html string
    psi->Load(stream);
    stream->Release();
}

// free memory
::GlobalUnlock(hMem);
::GlobalFree(hMem);
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.