일단 참조를 하나 추가해야 한다.
참조에서 "Microsoft WinHTTP Service, version 5.1" 를 추가해주고....
Dim WinHttp As New WinHttpRequest이렇게 "WinHttpRequest" 로 특정 URL 을 호출한다.
WinHttp.Open "GET", "http://daum.net"
WinHttp.Send
MsgBox WinHttp.ResponseText
그럼 이렇게 지정된 URL 의 내용을 텍스트로 가져 올수 있다.