excel 使用XML盘点物料

yr9zkbsy  于 2022-11-26  发布在  其他
关注(0)|答案(1)|浏览(138)

我有一个宏启用的Excel工作簿,它保存在理货可读XML格式的数据。目前我导入的XML文件在理货手动与导入数据选项从理货。现在我正在寻找一个VBA解决方案,以自动从Excel的权利。请帮助
从页面中的宏调用下面的行,在localhost中计数。
finalfile是xml文件
Call toTally("http://localhost:9000", finalFile)
从模块运行此代码

Sub toTally(host As String, request As String)
    MsgBox request

    Dim xmlhttp As New MSXML2.XMLHTTP60

    xmlhttp.Open "POST", host, True
    MsgBox "done opening"
    xmlhttp.send request
    MsgBox "done sending"
    MsgBox (xmlhttp.responseText)
    
 End Sub

在理货中没有记录。

kknvjkwl

kknvjkwl1#

下面的代码解决了我的问题。非常感谢大家花时间回复。

Sub toTally(host As String, request As String)
 
    Dim xmlhttp As New MSXML2.XMLHTTP60

    xmlhttp.Open "post", host, False 'host name came from calling function
    xmlhttp.send request 'file came from calling function
    
    MsgBox xmlhttp.responseText
    
 End Sub

相关问题