vb/vba控制ie对象自动填表单
发布网友
发布时间:2022-05-13 13:20
我来回答
共1个回答
热心网友
时间:2023-08-15 07:17
估计你的意思是想怎样手动打开网页后怎样用VBA来取得这个网页。《VBA实战技巧精粹》中有下面这个例子,你可以判断iewd.Document.Title是不是你的那个页面,相信后面的你自己会做了。
Sub GetIEWindows()
Dim shellWd As ShellWindows
Dim iewd As InternetExplorer
Set shellWd = New ShellWindows
For Each iewd In shellWd
If TypeOf iewd.Document Is HTMLDocument Then
Debug.Print iewd.Document.Title
End If
Next
Set iewd = Nothing
Set shellWd = Nothing
End Sub
参考资料:http://www.vbafan.com