Как я могу закрыть недавно открытый Internet Explorer, используя mshtml
Я хочу закрыть недавно открытый Internet Explorer, используя mshtml.
У меня есть программа, которая принимает значения из разных окон IE. Навигация к каждому окну вызывается с помощью метода Click() элемента. После обработки страницы я хочу закрыть окно.
Любой знает, как закрыть окно, используя Mshtml.
заранее спасибо Unni
2 ответа
Смотрите следующий код...
using System.Runtime.InteropServices;
// IE can be found in COM library called
// Microsoft Internet Controls:
using IE = SHDocVw.InternetExplorer;
static void OpenAndCloseIE()
{
// Get an instance of Internet Explorer:
Type objClassType = Type.GetTypeFromProgID("InternetExplorer.Application");
var instance = Activator.CreateInstance(objClassType) as IE;
// Close Internet Explorer again:
instance.Quit();
// Release instance:
System.Runtime.InteropServices.Marshal.ReleaseComObject(instance);
instance = null; // Don't forget to unreference it.
}