I get an "Argument not optional".
VB Code:
  1. Sub NewCanvasPicture()
  2.     Dim shpCanvas As Shape
  3.  
  4.     'Add a drawing canvas to the active document
  5.     Set shpCanvas = ActiveDocument.Shapes.AddCanvas(Left:=100, Top:=75, Width:=200, Height:=300)
  6.  
  7.     'Add a graphic to the drawing canvas
  8.     shpCanvas.CanvasItems.AddPicture FileName:="D:\Dog1.gif", LinkToFile:=False, SaveWithDocument:=True
  9. End Sub