Hi jay,
First of all, word from documents rather than dinwos, it will be much easier
to keep track of things.
Dim docSource as Document
Dim docDest as Document
Set docSource = ActiveDocument
Set docDest = Documents.Add
Once you assign an object variable to a document it will continue to
reference that document no matter whether the new documents are created, or
whether different documents are activated. You can do almost anything with
docSource or docDest that you can do with ActiveDocument.
Second, you can transfer formatted text between documents without using the
clipboard. Look up the FormattedText property in VBA help.

Signature
Regards
Jonathan West - Word MVP
www.intelligentdocuments.co.uk
Please reply to the newsgroup
Keep your VBA code safe, sign the ClassicVB petition www.classicvb.org
> I'm wrting some VBA (using Windows NT and Word 97) that finds and
> copies a few things from one document into a new (created by VBA)
[quoted text clipped - 24 lines]
> can't make this assumption. Alternatively, is there a better way to do
> what I'm trying to do?
Jay - 11 Aug 2005 12:01 GMT
Thanks Jonathan, all is working well now.
> Hi jay,
>
[quoted text clipped - 42 lines]
> > can't make this assumption. Alternatively, is there a better way to do
> > what I'm trying to do?