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.
Dim oShp As Shape
'stuff
With objWord.ActiveDocument.Bookmarks
.Item("PreparedFor").Range.Text = rst!PreparedFor
.Item("PreparedForAddress").Range.Text = rst!PreparedForAddress
Set oShp = .Item("GraphicFile").Range.InlineShapes.AddPicture("C:\Documents and Settings\Tim\My Documents\210.jpg", False, True)
End With
With oShp
.Fill.Visible = msoFalse
.Top = iTopPoints
End With
'stuff
Set oShp = Nothing