Bekijk de onderstaande video om te zien hoe je onze site als een web app op je startscherm installeert.
Opmerking: Deze functie is mogelijk niet beschikbaar in sommige browsers.
Dim WordApp As Object
Dim objWdDoc As New Word.Document
Set WordApp = CreateObject("Word.Application")
WordApp.Visible = True
objWdDoc.Application.WindowState = wdWindowStateMaximize
objWdDoc.Application.ScreenUpdating = False
Set objWdDoc = WordApp.Documents.Add("templatenaam.dot")
'Bookmarks vullen
Dim objRange As Word.Range
Dim strText As String
'Voornaam
If Me.First_name_s_ <> "" Then
strText = "Voornaam"
Set objRange = objWdDoc.Goto(What:=wdGoToBookmark, Name:="bVoornaam")
objRange.Text = strText
End If
'Tussenvoegsel
If Me.Tussenvoegsel <> "" Then
strText = "Tuusenvoegsel"
Set objRange = objWdDoc.Goto(What:=wdGoToBookmark, Name:="bTussenvoegsel")
objRange.Text = strText
End If
We gebruiken essentiële cookies om deze site te laten werken, en optionele cookies om de ervaring te verbeteren.