Advertisement
eldiegotee

Untitled

Jan 13th, 2023
171
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. Private Function GetStringWEB(ByVal sUrl As String) As String
  2. Dim oXMLHTTP As New MSXML2.ServerXMLHTTP
  3. oXMLHTTP.Open "GET", sUrl, False
  4. oXMLHTTP.Send
  5. GetStringWEB = oXMLHTTP.responseText
  6. End Function
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement