Mình có một đoạn code như bên dưới:
Đây là code theo một trang dạy VBA excel và mình làm y hệt như video họ dạy theo đường link :
Mình bị mắc vấn đề là hướng dẫn họ chạy code này bình thường còn mình bị lỗi chỗ XMLPage.send
Mong mọi người giúp đỡ:
Sub BrowseToExchangeRatesWithQueryStringAndXML()
Dim XMLPage As New MSXML2.XMLHTTP60
Dim HTMLDoc As New MSHTML.HTMLDocument
Dim HTMLAs As MSHTML.IHTMLElementCollection
XMLPage.Open "GET", "http://x-rates.com/table/?from=GBP&amount=3", False
XMLPage.send
HTMLDoc.body.innerHTML = XMLPage.responseText
Set HTMLAs = HTMLDoc.getElementsByTagName("table")
Debug.Print HTMLAs.Length
' ProcessHTMLPage HTMLDoc
End Sub
Đây là code theo một trang dạy VBA excel và mình làm y hệt như video họ dạy theo đường link :
Mong mọi người giúp đỡ:
Sub BrowseToExchangeRatesWithQueryStringAndXML()
Dim XMLPage As New MSXML2.XMLHTTP60
Dim HTMLDoc As New MSHTML.HTMLDocument
Dim HTMLAs As MSHTML.IHTMLElementCollection
XMLPage.Open "GET", "http://x-rates.com/table/?from=GBP&amount=3", False
XMLPage.send
HTMLDoc.body.innerHTML = XMLPage.responseText
Set HTMLAs = HTMLDoc.getElementsByTagName("table")
Debug.Print HTMLAs.Length
' ProcessHTMLPage HTMLDoc
End Sub