Hi all
I have the following excelmacro and are looking for a LibreOffice solution.
-------------------------------------------------------------------------
Public Sub check_server()
Dim xml As New XMLHTTP60 <---------------------- ?
Dim sURL As String
Dim sEnv As String
Dim xmlhtp As New MSXML2.XMLHTTP60 <----------------?
Dim xmlDoc As New DOMDocument <----------------------?
Dim soap_server As String
'Default IP Address in the Excel sheet
soap_server = Cells(1, 2)
On Error Resume Next
sURL = "http://" & soap_server & "/soap/RuntimeAccess?wsdl"
xmlhtp.Open "GET", sURL, False
xmlhtp.send
-------------------------------------------------------------------------
I found a lot of information like “its not possible to convert …”
and things like this, but I don’t found some info how to translate Excel into LibreOffice manualy.
What is the LibreOffice solution for Dim xml As New XMLHTTP60?
Are there something like a “dictionary” or other helpfull articles, books,…
where I can get help from?
Thanks a lot
Charly