How do I replace a shape with a copy of another shape. This is the code that I have so far.

VB Code:
  1. With ActiveDocument.Shapes(1)
  2.    .Select
  3.    Selection.InlineShapes(1).Select
  4.    Selection.copy
  5.    .Select
  6.    ' Replace shape with inlineshape
  7. End with

So I have a copy of the inline shape in the clipboard. And I have the shape that I want to replace selected. Now how do I go about replacing it?