You can use the Shell Method with full-path to WinWord.exe and then full
path to Word doc. For example, the following works in A2K2 on my computer:
Call Shell("""C:\Program Files\Office2K2\Office10\Winword.exe"" " & _
"""C:\Documents and Settings\VanDinh.VTDTEST\My Documents\Test 1.doc""", _
vbNormalFocus)
Note that I have spaces in the path and the full-paths need to be enclosed
in double-quotes.
Alternatively, you can use the FollowHyperlink Method and you only need the
full-path to the Word doc.