Copy the content of a word doc to another

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Ghaleon
    New Member
    • Aug 2013
    • 28

    Copy the content of a word doc to another

    Hello everyone !

    I'm trying to copy the content of WordDoc-A and paste it to WordDoc-B...

    I'm trying to work with this:
    Code:
    Word_Doc.Content.Copy
    But I'm failing =\

    How may I do that ?
  • Rabbit
    Recognized Expert MVP
    • Jan 2007
    • 12517

    #2
    That just copies the content to the clipboard. You didn't paste it anywhere.

    Comment

    • Ghaleon
      New Member
      • Aug 2013
      • 28

      #3
      Hmm, thanks !
      So how may I accomplish what I wish ?
      Just make a Ctrl+C & Ctrl+V ?!

      Comment

      • Rabbit
        Recognized Expert MVP
        • Jan 2007
        • 12517

        #4
        There's a paste method. Just as there is a copy method. You used the copy method to copy something into the clipboard. Now you just need to use the paste method to paste it somewhere, in this case, your other document.

        Comment

        Working...