Aug 13, 2008 #1 User4Fun Programmer Joined Aug 6, 2008 Messages 15 Location US How do you tell MSWORD using vba to move a picture object from teh document in to the table row 1 column 1?
How do you tell MSWORD using vba to move a picture object from teh document in to the table row 1 column 1?
Aug 13, 2008 #2 S SkipVought Programmer Joined Dec 4, 2001 Messages 47,492 Location US Did you try turning on your macro recorder? Code: ThisDocument.InlineShapes(1).Select Selection.Cut ThisDocument.Tables(1).Cell(1, 1).Range.Paste Skip, Just traded in my old subtlety... for a NUANCE! Upvote 0 Downvote
Did you try turning on your macro recorder? Code: ThisDocument.InlineShapes(1).Select Selection.Cut ThisDocument.Tables(1).Cell(1, 1).Range.Paste Skip, Just traded in my old subtlety... for a NUANCE!