参考代码
Dim app As New MSWord.Application
try
Dim dlg As new OpenFileDialog
dlg.MultiSelect = True
If dlg.ShowDialog = DialogResult.OK Then
Dim t As Table = Tables("申请人基本情况")
For Each filename As String In dlg.FileNames
Dim nr As Row = t.addnew
Dim doc = app.Documents.Open(fileName)
Dim dt = doc.Tables(1)
nr("姓名") = dt.Cell(2, 3).Range.text.tostring
nr("性别") = dt.Cell(2, 5).Range.text.tostring
nr("年龄") = dt.Cell(3, 3).Range.text.tostring
nr("民族") = dt.Cell(3, 5).Range.text.tostring
nr("文化程度") = dt.Cell(4, 3).Range.text.tostring
doc.saved = True
doc.close
Next
End If
catch ex As exception
msgbox(ex.message)
app.Quit
finally
app.Quit
End try