我有一个宏启用的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
在理货中没有记录。
1条答案
按热度按时间kknvjkwl1#
下面的代码解决了我的问题。非常感谢大家花时间回复。