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 TestMerge()
Dim objWord As Object
Dim strDocumentName As String
strDocumentName = "C:\MergeTest.doc"
Set objWord = CreateObject("Word.Application")
With objWord
.Visible = True
.Documents.Open strDocumentName
End With
Set objWord = Nothing
End Sub