eldiegotee

Untitled

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