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.
Function CreateMergeDoc(UseDDE As Boolean, PrintDoc As Boolean, strDocName)
Dim WordApp As Word.Application
Dim WordDoc As Word.Document
Dim strLetter As String
Dim strConnect As String
' Create an instance of Microsoft Word 2000.
Set WordApp = CreateObject("Word.Application")
' Create a new, empty document.
Set WordDoc = WordApp.Documents.Open("C:/YourFolder/Certificate.doc")
With WordApp.Selection
.TypeText Text:= me.txtCertificateNumber
'or what ever the field you need to add is.
End With
WordApp.Visible = True
End Function