View Single Post
 
Old 11-18-2013, 05:29 AM
JohnWilson JohnWilson is offline Windows 7 64bit Office 2010 32bit
Programmer
 
Join Date: Nov 2008
Location: UK
Posts: 1,913
JohnWilson has a spectacular aura aboutJohnWilson has a spectacular aura about
Default

I don't think you can the link will always open the template.

You can do this by making the "LINK" run code (Insert > Action > Run Code

The code would look like this

Code:
Sub wordOpen()
Dim oWdApp As Object
On Error Resume Next
Set oWdApp = GetObject(Class:="Word.Application")
If oWdApp Is Nothing Then _
Set oWdApp = CreateObject(Class:="Word.Application")
oWdApp.Visible = True
'change the path!!
oWdApp.Documents.Add Template:="C:\Users\John\Desktop\whT.dotx"
End Sub
__________________
Microsoft PowerPoint MVP 2007-2023
Free Advanced PowerPoint Tips and Tutorials
Reply With Quote