You need to call the application first, then give the application the link. If you just feed the image, the OS chooses the app. If you call the app, then give the app the image, it works. Here is an example:
'==========Code Starts========
stLink = "http:\\www.mywebsite.com\images\MyImage.jpg"
Set objExplorer = CreateObject("InternetExplorer.Application")
objExplorer.Navigate stLink
objExplorer.Visible = 1
'==========Code Ends==========
HTH
mmcdonal
|