Dim oApp As Word.Application
Dim myRange As Range
Dim intI As Integer
'
Set oApp = CreateObject("Word.Application")
oApp.Visible = True
oApp.Documents.Open MyPath
intI = ActiveDocument.Paragraphs.Count
Set myRange = ActiveDocument.Range(Start:=ActiveDocument.Paragraphs(1).Range.Start, _
End:=ActiveDocument.Paragraphs(intI).Range.End)
myRange.Delete
myRange.InsertAfter Me.文本51