-
Jason,
After reopening a file and doing .MoveEnd, how do I get VBE to allow me to insert my next Activity after the one in the file? Here's a code fragement:
[vba]Sub A_Fragment()
If myOutFile <> LastFileName Then
Set oDocNew = Documents.Add
Else
Call Open_File(myOutFile, ".rtf", SrcDir)
Set oDocNew = ActiveDocument
oDocNew.Content.MoveEnd
End If
oDocNew.Paste ' <<< how do I InsertAfter instead of Paste over?
End Sub
[/vba]
Thanks,
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules