A) You have commented out your opening of word.
B) Use johnwm's code method (I have a code piece below of similar nature). The shell method is sloppy and will screw up if MS decides to change anything upon Word's installation.
C) Looks like a legal document printing, so correct 'category' (don't want you to look bad)
D) Here is some code that should do the trick:
' This code was written by BBurke; GTC, Inc.,
' please modify to suit your needs.
' Do not claim it as your own.
'Use these lines to OPEN the document along with Word.
'###
Dim appWord As Word.Application
Dim docWord As Word.Document
Set appWord = CreateObject("Word.Application"

Set docWord = appWord.Documents.Open(YourPathHere)
'###
'Use these lines to CLOSE the document along with Word.
'###
' Close the Word Document
docWord.Close
' Close the Word Application
appWord.Quit
' Clear out variables, prevent memory leak.
Set docToPrint = Nothing
Set appWord = Nothing
'##
With these method types (johnwm's and my own), you must put a reference to Word inside of your project. You can do this through the Project menu, References menu item.
Hope that helps you out.