Equivalent cURL in VBA?

Solved it now guys, works well. For other peoples convenience. TargetURL = “https://www.mysite.co.uk/app/api/v1/test” Set HTTPReq = CreateObject(“WinHttp.WinHttpRequest.5.1”) HTTPReq.Option(4) = 13056 ‘ HTTPReq.Open “PUT”, TargetURL, False HTTPReq.SetCredentials “user”, “password”, 0 HTTPReq.setRequestHeader “Content-Type”, “application/x-www-form-urlencoded” HTTPReq.send (“test[status]=” & Forms!curl!Text0.Value & “&test2[status]=” & Text2.Value) MsgBox (HTTPReq.responseText)

How to diagnose MS access crashes

This is an old thread, but it came up as one of the top results on Google so I thought I would give an answer. What steps can you take when you get “Access has encountered a problem and needs to close”. Usually in the event log you will see: Faulting application name: MSACCESS.EXE, version: … Read more