Destination:= "C:\Documents and Settings\" & MyName & "\Application
Data\Microsoft\Templates\Normal.dot"
But, see the article "How to get the username of the current user" at:
http://word.mvps.org/FAQs/MacrosVBA/GetCurUserName.htm
and dispense with the need for the inputbox.

Signature
Hope this helps.
Please reply to the newsgroup unless you wish to avail yourself of my
services on a paid consulting basis.
Doug Robbins - Word MVP
>I am trying to write some code in Word where upon opening a certain
>template,
[quoted text clipped - 15 lines]
>
> Steve C
Steve Yandl - 15 Jul 2005 00:10 GMT
An alternate approach to extract the user's name which also avoids the input
box.
Set nwObj = CreateObject("WScript.Network")
strUser = nwObj.UserName
Steve
> Destination:= "C:\Documents and Settings\" & MyName & "\Application
> Data\Microsoft\Templates\Normal.dot"
[quoted text clipped - 25 lines]
>>
>> Steve C
Steve Yandl - 15 Jul 2005 00:42 GMT
Not any simpler but this is a second approach that uses the
shell.application to return the path to the local user's Application Data
folder.
Set objShell = CreateObject("Shell.Application")
Set objLocAppFldr = objShell.Namespace(&H1C&)
strLocAppFldrPath = objLocAppFldr.Self.Path
strFullPath = strLocAppFldrPath & "\Microsoft\Templates\Normal.dot"
Steve
> Destination:= "C:\Documents and Settings\" & MyName & "\Application
> Data\Microsoft\Templates\Normal.dot"
[quoted text clipped - 25 lines]
>>
>> Steve C
Steve C - 15 Jul 2005 15:28 GMT
Thanks Doug and Steve for all your help!
> Not any simpler but this is a second approach that uses the
> shell.application to return the path to the local user's Application Data
[quoted text clipped - 36 lines]
> >>
> >> Steve C