Sending HTTP requests with VBA from Word

前端 未结 3 1057
滥情空心
滥情空心 2020-11-29 07:46

I am trying to send data from a Word document to a web page. I have found some code, pasted it into a new module, and saved it. When I run it I get \"compile error, user def

3条回答
  •  旧时难觅i
    2020-11-29 08:09

    A potential alternative to avoid having to select the library is to use an object i.e.

    Sub http()
    Dim MyRequest As Object
    
        Set MyRequest = CreateObject("WinHttp.WinHttpRequest.5.1")
        MyRequest.Open "GET", _
        "http://www.google.com"
    
        ' Send Request.
        MyRequest.Send
    
        'And we get this response
        MsgBox MyRequest.ResponseText
    
    End Sub
    

提交回复
热议问题