Dim app As New MSWord.Application
try
Dim fileName = "C:\Documents and Settings\Administrator\My Documents\下载\从word取数据\从WORD取数据\黄某某.doc"
Dim doc = app.Documents.Open(fileName)
Dim tb = doc.Tables(1)
For i As Integer = 1 To tb.Range.cells.count
Output.Show(tb.Range.cells(i).Range.Text)
Next
catch ex As exception
msgbox(ex.message)
finally
app.Quit
End try