Is there a way to get IActiveScript***
C / C++ / MFC
1
Posts
1
Posters
0
Views
1
Watching
-
from CHtmlView or WebBrowser control? I need AddNamedItem() badly. OutlookExpress seems to be able to do that
function updateAccountInfo()
{
if (OutlookExpress.mailAccounts != null)
{
szUser = OutlookExpress.userName;
cMail = OutlookExpress.mailAccounts;
cNews = OutlookExpress.newsAccounts;
}
else
{
// we may be running on IE4, if so, assume mail and news setup.
szUser = "";
cMail = 1;
cNews = 1;
}
....