부끄러움을 모르는 자들이 활개치는 세상에서,
한줌 부끄러움에 몸을 떨던 자
결국 그 자신을 버림으로써
마지막 남은 자신의 존엄을 지키다.
2009.05.23
Aoccdrnig to a rsceearehr at Cmabrigde uinervtisy, it deosn't mttaer in waht oredr the ltteers in a wrod are, the olny iprmoetnt tihng is taht the frist and lsat ltteer be at the rghit pclae. The rset can be a toatl mses and you can sitll raed it wouthit porbelem. Tihs is bcuseae the huamn mnid deos not raed ervey lteter by istlef but the wrod as a wlohe.
프로젝트 - 참조에
System.Web을 추가해줘야함
#using System.Web만으로는 부족함 (이해할수는 없지만)
System.Web을 추가해줘야함
#using System.Web만으로는 부족함 (이해할수는 없지만)
using System.Net;
using System.IO;
using mshtml;
.....
HttpWebRequest req = (HttpWebRequest)WebRequest.Create(http://www.google.com);
HttpWebResponse resp = (HttpWebResponse)req.GetResponse();
Stream strm = resp.GetResponseStream();
StreamReader sr = new StreamReader(strm);
String htmltxt = sr.ReadToEnd();
IHTMLDocument2 doc = (IHTMLDocument2)new HTMLDocument();
doc.clear();
doc.write(htmltxt);
doc.close();
IHTMLElementCollection hc = doc.all;
foreach (IHTMLElement he in hc)
{
//do something
}
Visual Studio가 실행되기는 하지만
프로젝트를 열거나 새로운 프로젝트를 만들려 할때
아무런 오류 메시지 없이 VS가 종료되는 현상이 발생한다면
시스템에 VMWare workstation 6.5가 설치되어있는지 확인해본다.
VMWare workstation의 Visual Studio Integrated Debugger가 문제일 수 있음.
(설치할꺼냐고 물어보지도 않고 이런걸 깔아놓다니 --;; )
해결방법은 VS 실행 후 [Tools] -> [Add-in managemr] -> [VMDebugger 해제] 한 다음
프로젝트 열기 또는 생성하여 사용 (프로젝트 열때마다 해줘야함)
VMware Integrated debugger add-in을 앞으로 영원히 사용할 계획이 없다면
C:\Program Files\VMware\VMware Workstation\Visual Studio Integrated Debugger 의
dcl.dll을 지우거나 이름을 바꿔둠. (한번만 해두면 됨)
이문제로 운영체제를 세번 갈아엎고
Visual Studio를 버전별로 세네번씩 깔았다 지웠다 하는 수고를 할
잠재적인 Visual Studio와 VMware 사용자께 도움이 되길.
프로젝트를 열거나 새로운 프로젝트를 만들려 할때
아무런 오류 메시지 없이 VS가 종료되는 현상이 발생한다면
시스템에 VMWare workstation 6.5가 설치되어있는지 확인해본다.
VMWare workstation의 Visual Studio Integrated Debugger가 문제일 수 있음.
(설치할꺼냐고 물어보지도 않고 이런걸 깔아놓다니 --;; )
해결방법은 VS 실행 후 [Tools] -> [Add-in managemr] -> [VMDebugger 해제] 한 다음
프로젝트 열기 또는 생성하여 사용 (프로젝트 열때마다 해줘야함)
VMware Integrated debugger add-in을 앞으로 영원히 사용할 계획이 없다면
C:\Program Files\VMware\VMware Workstation\Visual Studio Integrated Debugger 의
dcl.dll을 지우거나 이름을 바꿔둠. (한번만 해두면 됨)
이문제로 운영체제를 세번 갈아엎고
Visual Studio를 버전별로 세네번씩 깔았다 지웠다 하는 수고를 할
잠재적인 Visual Studio와 VMware 사용자께 도움이 되길.




댓글을 달아 주세요