foxtable操作word并不是不可能的,有兴趣的朋友可以研究研究,毕竟对公文管理系统开发有帮助。
需要引用Microsoft.Office.Interop.word.dll文件
后面的相信你只要会vba,这个就没问题了
假如命名空间是MSWord
那么下面的代码就可以打开Word的进程了
Dim App As New MSWord.Application
App.Visible = True
'新建文档
Dim missing = System.Reflection.Missing.Value
Dim Adoc = App.Documents.Add(missing, missing, missing, missing)
Adoc.Activate()
'插入文字
Adoc.Range.Words(1).InsertAfter("hello,foxtable!") '在当前文档中的第一个词后插入"hello,foxtable"
'保存文档
try
Adoc.Save()
Catch
MsgBox(Err.Description)
End Try
'退出word
App.Quit()
[此贴子已经被作者于2011-12-1 17:35:20编辑过]