Sub Sample()
Dim wdApp As Variant
Set wdApp = GetObject(, "Word.Application.8")
With wdApp
.Documents.Open FileName:="C:\Test.doc"
.Selection.MoveDown Unit:=5, Count:=1, Extend:=1
MsgBox .Selection
.ActiveDocument.Close
.Quit
End With
Set wdApp = Nothing
End Sub