VB获取网页源代码

前端之家收集整理的这篇文章主要介绍了VB获取网页源代码前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

1:新建窗体



2:添加按钮Command1



3:添加Text1空间用来得到存放网页代码



代码

Private Sub Command1_Click()
Set xmlHTTP1 = CreateObject("Microsoft.XMLHTTP")
xmlHTTP1.Open "get","http://www.qq.com",True
xmlHTTP1.send
While xmlHTTP1.readyState <> 4
DoEvents
Wend
Text1.Text = xmlHTTP1.responseText
Set xmlHTTP1 = Nothing
End Sub
原文链接:https://www.f2er.com/vb/260456.html

猜你在找的VB相关文章