Hi, I think, it is possible when u use MSOffice Type Library. To read word file, you need Microsoft Word (Version No) Object Library.
To add reference
> Project -> Reference -> Microsoft Word (Version No 11 or 12) Object Library
Now Try the coding
Create Word File as C:\Word.doc
This just give idea to read word file. Also this transfers Text Only not images, tables etc.
Private Sub Command1_Click()
Dim MyDocument As Document
Dim RangeText As Range
Dim MyApplication As Application
Set MyApplication = New Application
Set MyDocument = Documents.Open("C:\Word.doc", Visible:=False)
Text1.Text = ""
For Each RangeText In MyDocument.Words
Text1.Text = Text1.Text & vbCrLf & RangeText.Text
Next
End Sub