Greetings!

When opening a Word 2010 document using VBA in Excel 2010, do I need to type the entire path. For example, I am using a template as follows
    
Set wdApp = CreateObject("Word.application")
Set wdDoc = wdApp.Documents.Add(Template:="C:\Users\Myself\Desktop\Project\Example.dotx")
If I want to transfer this workbook to a different computer, or would like to allow another user to use the workbook VBA code, I would like an easier way to have the code find the document template without having to re-write the code each time. Can this be accomplished?

Thanks