Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi all,
i found a instruction in the manual for CGI-Encoder and HTTP-Calls (Manual Page 249). But i can't find the functions in QlikView 10.
Which version has these features? How can I use the functions in QV 10?
Thanks!!!
Hi all,
here is the Solution:
Sub httpRequest
m_Post = "inputField=inputValue"
m_Url = "http://www.mydomain.com"
Set objHTTP = CreateObject("Microsoft.XMLHTTP")
objHTTP.open "POST", m_Url, False
objHTTP.setRequestHeader "Content-Type", "application/x-www-form-urlencoded"
objHTTP.send m_Post
ActiveDocument.GetSheetObject("TX03").SetText objHTTP.responseText
Set objHTTP = Nothing
End Sub
Sorry, i mean the manual from QlikView 9,
but i also can't find the function in qv9
any idea?
Hi all,
here is the Solution:
Sub httpRequest
m_Post = "inputField=inputValue"
m_Url = "http://www.mydomain.com"
Set objHTTP = CreateObject("Microsoft.XMLHTTP")
objHTTP.open "POST", m_Url, False
objHTTP.setRequestHeader "Content-Type", "application/x-www-form-urlencoded"
objHTTP.send m_Post
ActiveDocument.GetSheetObject("TX03").SetText objHTTP.responseText
Set objHTTP = Nothing
End Sub