I need to create a new document from an exisiting MSWord template but I want to access it via MSAccess.
I have tried the below code and also in desperation tried a hyperlink to the address, but both open the template file itself instaed of creating a new document from the file.
Can anyone advise how I do this.

Private Sub More_Info_Letter_Click()
Dim MoreInfoLetter As String
Dim oApp As Object
MoreInfoLetter = "G:\Extra Info Letters.dot"
Set oApp = CreateObject(Class:="Word.Application")
oApp.Visible = True
oApp.Documents.OPEN FileName:=MoreInfoLetter
End Sub
I have tried the below code and also in desperation tried a hyperlink to the address, but both open the template file itself instaed of creating a new document from the file.
Can anyone advise how I do this.

Private Sub More_Info_Letter_Click()
Dim MoreInfoLetter As String
Dim oApp As Object
MoreInfoLetter = "G:\Extra Info Letters.dot"
Set oApp = CreateObject(Class:="Word.Application")
oApp.Visible = True
oApp.Documents.OPEN FileName:=MoreInfoLetter
End Sub