James,...
If I were the opposite sex, I think you would offer to kiss me... BUT I will take the high five instead...
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...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
intraman,
Don't know of a site that has *.png graphics but this should work for you also...
Good Luck




Reply With Quote