We have an image server that runs on IIS. How can you insert image into a word dock that src to a url???
i.e img src="
i.e img src="
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Sub GetWebImage()
Dim WinHttpReq As WinHttp.WinHttpRequest
' Create an instance of the WinHTTPRequest ActiveX object.
Set WinHttpReq = New WinHttpRequest
' Create an array to hold the response data.
Dim d() As Byte
' Assemble an HTTP Request.
WinHttpReq.Open "GET", _
"http://[i]qualified path[/i].jpg", False
' Send the HTTP Request.
WinHttpReq.Send
' Put response data into a file.
Open "temp.gif" For Binary As #1
d() = WinHttpReq.ResponseBody
Put #1, 1, d()
Close
' Load the data file as a picture.
WebImage.Picture = LoadPicture("temp.gif")
End Sub