The early binding vs late, at least the way I do it, has some differences with Bookmarks for when you want Select/Copy and so on the.
The late bind need [ not the I beam type.
Word also closes much slower.
Although with early bind I don't have the bookmarks wiped out as I think I read in HiTechCoach's link
Shadow, here is some copy type stuff you can include in the above code. These are snippets because as you can see the last copy would wipe out the first
Dim RNGbookmarks As Object
With WordDoc.Bookmarks
Set RNGbookmarks = WordObj.ActiveDocument.Range( _
Start:=WordObj.ActiveDocument.Bookmarks("Name").Range.Start, _
End:=WordObj.ActiveDocument.Bookmarks("a2").Range.End)
End With
RNGbookmarks.Select
With WordDoc.Bookmarks
RNGbookmarks.Copy
End With
With WordDoc.Bookmarks
.Item("a2").Range.Select
End With
With WordDoc.Bookmarks
.Item("a2").Range.Copy
End With
With WordDoc.Bookmarks
.Item("a7").Range.Paste
End With