TA的每日心情 | 奋斗 2014-12-18 10:31 |
---|
签到天数: 1 天 连续签到: 1 天 [LV.1]测试小兵
|
WORD中追加内容
本帖最后由 feiyunkai 于 2010-11-17 13:10 编辑
DocAdd "E:\test.doc","追加的内容"
Public Function DocAdd(FilePath,Text)
'函数功能:WORD中追加文字
'参数:FilePath:需要追加的WORD路径,Text:追加的内容
'返回值:无
Set Doc = CreateObject("Word.Application") '创建对象
Set OpenDoc=Doc.Documents.Open(FilePath) '打开WORD
Doc.Visible=True '设置WORD运行时是否可见
Doc.ActiveDocument.Content.text=Doc.ActiveDocument.Content.text&Text '换行追加
'OpenDoc.Content.InsertAfter Text '不换行追加
OpenDoc.Close '关闭文档
Doc.Quit '退出WORD
Set OpenDoc=Nothing '释放对象
Set Doc =Nothing '释放对象
End Function |
|