in java I use "import",in C# I use "using",in vb6 what I should use ?
Posted
by user292084
on Stack Overflow
See other posts from Stack Overflow
or by user292084
Published on 2010-04-15T03:29:57Z
Indexed on
2010/04/15
3:33 UTC
Read the original article
Hit count: 294
vb6
for example. I write a mothed
Private Sub Command1_Click()
Dim dom As New DOMDocument
Dim http As New XMLHTTP
Dim strRet As String
If Not dom.Load("c:\voucher.xml") Then MsgBox "?????"
http.Open "Post", "http://172.31.132.173/u8eai/import.asp", True '?????ASP
http.send dom.xml '?xml????????
strRet = http.responseText '
End Sub
I should import "DOMDocument","XMLHTTP" and so on, what should I do ?
© Stack Overflow or respective owner