标题: VB 翻译到 易语言 或帮忙看下 [打印本页] 作者: 愿尘世美 时间: 2013-7-21 01:42 标题: VB 翻译到 易语言 或帮忙看下 VB
Private Sub Command1_Click()
List1.Clear
Dim gettable
Set gettable = WebBrowser1.Document.getelementsbytagname("table")
For i = 0 To gettable.length - 1
idname = gettable.Item(i).id
If idname <> "" Then
Set gettable2 = gettable.Item(i).getelementsbytagname("td")
List1.AddItem idname & " " & gettable2(0).innerHTML & gettable3(0).href
End If
Next
End Sub