很久以前的问题了,一直没解决,今天无意中搜到了答案。
在InternetExplorer.Application对象中显示远程服务器上的图片是没有问题的:
Dim IE Set IE = CreateObject("InternetExplorer.Application") IE.Navigate "about:blank" IE.Document.write "<img src='https://demon.tw/demon.gif' />" IE.Visible = True
然而,在IE默认的设置下,却无法显示本地图片:
(更多…)