孤独的猫

  博客园 :: 首页 :: 博问 :: 闪存 :: 新随笔 :: 联系 :: 订阅 订阅 :: 管理 ::

以下示例从另一个WORD文档,并从中复制数据到本地表中

Private Sub CommandButton1_Click()

  Dim i As Integer

  Dim f As Document

  Set f=Application.Documents.Open("************.doc")

  For i=2 to  f.Tables(7).Rows.Count

    Me.Tables(2).Cell(2+i,1).Range.Text=Mid(f.Tables(7).Cell(i,2).Range.Text,1,Len(f.Tables(7).Cell(i,2).Range.Text)-2)

  Next i

End Sub

posted on 2011-08-09 20:22  孤独的猫  阅读(291)  评论(0编辑  收藏  举报