|
[广告] VBA代码宝 - VBA编程加强工具 · VBA代码随查随用 · 内置多项VBA编程加强工具 ★ 免费下载 ★ ★ 使用手册★
Sub test()
Dim i%, n%, p$, s$, m%
p = Application.MacroContainer.Path '当前路径
s = Application.MacroContainer.Name '文件名含后缀
s = Left(s, Len(s) - 4) '文件名
n = ActiveDocument.Paragraphs.Count '返回当前文档中的段落数
MyString = ""
For i = n To 1 Step -1 '
MyString = MyString & ActiveDocument.Paragraphs(i).Range.Text '返回当前文档中第i段的内容
Next
Documents.Add '新建文档
ActiveDocument.Paragraphs(1).Range.Text = MyString '写内容
ActiveDocument.SaveAs FileName:=p & "\" & s & "-反" '另存
End Sub |
|