 |
基本思路是这样的:
Private a As New SHDocVw.ShellWindows
Private b As SHDocVw.InternetExplorer
Private Sub Command1_Click()
Form1.Caption = a.Count
Set b = a.Item(0)
Form1.Caption = Form1.Caption + b.LocationName
Set b = Nothing
Set a = Nothing
End Sub
我想这就是那些填表软件的原理
此问题由vbstudy回答。
附加关键字:编程, 源程序, programming, source code, Visual Basic, VB, Web浏览器, ie, netscape。
|