假设我们有以下代码
'Call service
Set xmlhttp_ = CreateObject("MSXML2.xmlhttp")
xmlhttp_.Open "GET", url, False
xmlhttp_.send
result = (xmlhttp_.responseText)
sendRequest = result
我们是否需要在使用后处理xmlhttp_
?
答案 0 :(得分:2)
它应该在超出范围时自动处理。请参阅Matthew Curland的回复: