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 _
  6.         .AddCanvas(Left:=100, Top:=75, _
  7.         Width:=200, Height:=300)
  8.  
  9.     'Add a graphic to the drawing canvas
  10.     shpCanvas.CanvasItems.AddPicture _
  11.         FileName:="C:\Program Files\Microsoft Office\" & _
  12.             "Office\Bitmaps\Styles\stone.bmp", _
  13.         LinkToFile:=False, SaveWithDocument:=True
  14. End Sub


OK, how's about this? From the "Addpicture" part of Office Help. Feel free to substitute your own piccy.


zaza