Private Sub Command1_Click()
Dim dom As New DOMDocument
Dim http As New XMLHTTP
Dim strRet As String
If Not dom.Load("c:\\CH.xml") Then MsgBox "文件不存在"
http.Open "Post", "http://172.31.132.173/u8eai/import.asp", True '指定服務器ASP
http.send dom.xml '把xml數據發送服務器端
strRet = http.responseText 'strRet:返回的xml格式的回執信息
MsgBox strRet
End Sub
The error message, in Chinese: 實時錯誤 完成該操作所需的數據還不可使用. translated by google(To English): Real-time error The data needed to complete the operation can not be used alsoI get a error message from my vb6 program
What's the error number? ('Err.Number') That will be the same regardless of language, and would let you (and anyone trying to help you) find it on the MSDN site. – 2010-04-18 09:29:15