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

I use CDHtmlDialog to work with DOM of some HTML content from given URLs. I need to disable all possible popup messages (e.g Security alerts) that can appear as in case of InternetExplorer Browser. In JScript I can set property Silent to true

var oIE = WScript.CreateObject("InternetExplorer.Application","EventIE_");
oIE.Silent = true;

and that's work! How to get same behaviour in CDHtmlDialog?

Thanks

link|improve this question

0% accept rate
feedback

1 Answer

I found the solution!

m_pBrowserApp->put_Silent(VARIANT_TRUE);
link|improve this answer
No It seems doesnt work. It still shows javascript alerts :( – C0x Aug 16 '10 at 16:54
feedback

Your Answer

 
or
required, but never shown

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