My current code.
How can i get an image from Internet. that will be gif file etc.
Sub GetGIF()
'
Dim ie As Object
Set ie = CreateObject( _
"InternetExplorer.Application")
ie.navigate "http://www.microsoft.com/"
'Wait to link to page
Do While ie.busy And Not ie.readystate = 4
DoEvents
Loop...