How post request to Http from MSAccess?

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • mttc

    How post request to Http from MSAccess?

    How post request to Http from MSAccess?
  • Rick Brandt

    #2
    Re: How post request to Http from MSAccess?

    mttc wrote:
    How post request to Http from MSAccess?
    I use the msxml.dll file

    (overly simplified example)

    Dim oHttp As Object
    Set oHttp = CreateObject("M icrosoft.XMLHTT P")
    MyUrl = "someURL"
    oHttp.Open "GET", MyUrl, False
    oHttpPost.send ()
    If oHttpPost.Statu s < 300 Then
    SomeVar = oHttpPost.respo nseText
    End if


    --
    Rick Brandt, Microsoft Access MVP
    Email (as appropriate) to...
    RBrandt at Hunter dot com


    Comment

    Working...