Como eu pego o link de uma imagem pelo web brouser?
olha aí o código que estou usando....
Dim elem
Dim tbl
Dim tr
Dim i
i = 1
For Each elem In Me!WebBrowser1.Document.all
If elem.Tagname = "TABLE" Then
Set tbl = elem
If tbl.rows.length >= 1 Then
Set tr = tbl.rows(0)
If tr.cells.length > 1 Then
If Not InStr(tbl.rows(0).innertext, "No.") > 0 Then
If Not InStr(tbl.rows(0).innertext, "Shortcut") > 0 Then
If InStr(tr.cells(1).innertext, "Part No") > 0 Then
For i = 1 To tbl.rows.length
i = i + 1
If i <= tbl.rows.length Then
MsgBox tbl.rows(i).cells(1).innertext & vbCr & _
tbl.rows(i).cells(2).innertext & vbCr & _
tbl.rows(i).cells(4).innertext & vbCr & _
tbl.rows(i).cells(3).innertext
End If
Next
End If
End If
End If
End If
End If
End If
Next
>>> O problema está aqui: tbl.rows(i).cells(3) no site tem uma imagem e eu preciso do link que a imagem direciona...
como quase não uso web browser em minhas aplicações recorro aos amigos e mestres...
Abraços e obrigado pela atenção.
olha aí o código que estou usando....
Dim elem
Dim tbl
Dim tr
Dim i
i = 1
For Each elem In Me!WebBrowser1.Document.all
If elem.Tagname = "TABLE" Then
Set tbl = elem
If tbl.rows.length >= 1 Then
Set tr = tbl.rows(0)
If tr.cells.length > 1 Then
If Not InStr(tbl.rows(0).innertext, "No.") > 0 Then
If Not InStr(tbl.rows(0).innertext, "Shortcut") > 0 Then
If InStr(tr.cells(1).innertext, "Part No") > 0 Then
For i = 1 To tbl.rows.length
i = i + 1
If i <= tbl.rows.length Then
MsgBox tbl.rows(i).cells(1).innertext & vbCr & _
tbl.rows(i).cells(2).innertext & vbCr & _
tbl.rows(i).cells(4).innertext & vbCr & _
tbl.rows(i).cells(3).innertext
End If
Next
End If
End If
End If
End If
End If
End If
Next
>>> O problema está aqui: tbl.rows(i).cells(3) no site tem uma imagem e eu preciso do link que a imagem direciona...
como quase não uso web browser em minhas aplicações recorro aos amigos e mestres...
Abraços e obrigado pela atenção.