Hi folks,

As per the code below, I'm trying to copy an address from a letter (doc1)
and paste it into a text box in doc2. Unfortunately, when I try to paste, I
end up with the copied text being pasted into the main body of the document,
not into the text box as I had wanted. Any suggestions?

ActiveDocument.Shapes("Text Box 2").Select
Selection.Paste

Thanks in advance for your help

Re: paste into text box by Jezebel

Jezebel
Fri Mar 31 05:28:56 CST 2006

ActiveDocument.Shapes("Text Box 2").TextFrame.TextRange.Paste





"Adelaide Pat" <AdelaidePat@discussions.microsoft.com> wrote in message
news:4F7519CE-797D-4D56-9520-C4BB138B847E@microsoft.com...
> Hi folks,
>
> As per the code below, I'm trying to copy an address from a letter (doc1)
> and paste it into a text box in doc2. Unfortunately, when I try to paste,
> I
> end up with the copied text being pasted into the main body of the
> document,
> not into the text box as I had wanted. Any suggestions?
>
> ActiveDocument.Shapes("Text Box 2").Select
> Selection.Paste
>
> Thanks in advance for your help
>