Here's an easy way to open a word, excel, or other file in vba:



dim strURL as string
strURL = "C:\MyFolder\MyWordDocument.doc"
application.followhyperlink strURL

Note: Try not to use any spaces. Spaces are killers for coding.