Hi Keith,
You might try to avoid using .Copy and .Paste. Instead, you could use the
.Text property of the .Paragraph object, as in the following example:
Dim odocCopyTo As Document
Dim odocCopyFrom As Document
odocCopyTo = ActiveDocument
odocCopyFrom = Documents(2)
odocCopyTo.Paragraphs(1).Range.Text = odocCopyFrom.Paragraphs(1).Range.Text
HTH,
Dave
> Many style, bullet, and numbering problems seem to start when text is pasted
> in from another Word document. Can someone suggest a way to use VBA to get
[quoted text clipped - 3 lines]
>
> Keith
Perry - 10 Nov 2004 22:56 GMT
> odocCopyTo = ActiveDocument
> odocCopyFrom = Documents(2)
adjust the above lines to read
Set odocCopyTo = ActiveDocument
Set odocCopyFrom = Documents(2)
Krgrds,
Perry
> Hi Keith,
>
[quoted text clipped - 19 lines]
> >
> > Keith