James,...

If I were the opposite sex, I think you would offer to kiss me... BUT I will take the high five instead...
Code:
Option Explicit

Private Sub Form_Load()
WB.Navigate "http:\\www.yahoo.com"
End Sub

Private Sub Command1_Click()
Dim O As Object
Dim Images As Variant

Set O = WB.Document.body.createControlRange()

For Each Images In WB.Document.Images
  O.Add Images
  O.execcommand "Copy"
  Picture1.Picture = Clipboard.GetData
Next Images

End Sub
Add webbrowser control and rename to WB. Add picture box. Add Command Button. Add the code above and set break point on the command1_click event. Run and let the page load. Then click and walk through...

intraman,

Don't know of a site that has *.png graphics but this should work for you also...

Good Luck