728x90

SHDocVw.ShellWindows shellWindows = new SHDocVw.ShellWindowsClass();   
foreach(SHDocVw.InternetExplorer ie in shellWindows)
{
   filename = Path.GetFileNameWithoutExtension(ie.FullName).ToLower();
   if (filename.Equals("iexplore"))
  {
      // 밑의 두소스를 여기서 실행 시키면 됨.
   }
}

현재 활성화 된 인터넷 익스플로어의 정보를 얻어 냄. 얻어진 정보로 document
를 얻어내어 사용한다.
mshtml,SHDocVw는 별도의 참조 추가를 필요로 한다.
Microsoft HTML Object Library(mshtml.tlb),Microsoft Internet Controls(iframe.dll)
을 추가시켜준다.
mshtml.IHTMLDocument2 doc = (mshtml.IHTMLDocument2)ie.Document;
mshtml.IHTMLElementCollection AllElements = doc.all;
foreach (mshtml.IHTMLDOMNode Element in AllElements)
{
    string ElementName = Element.nodeName;
    Console.WriteLine(ElementName);
}
IHTMLDocument2,IHTMLElementCollection 을 이용하여
모든 태그 이름 얻어 낼수 있다.
foreach (IHTMLElement HTMLElement in doc.all)
{
    if (HTMLElement.tagName == "A")
    {
        ListOfLinks.Add(HTMLElement);
    }
}

특정 태그 요소를 얻어 낼 수 있다.

원문 : http://toe10.tistory.com/admin/entry/edit/235

+ Recent posts