Hi,
You can use MS Scripting to open a Word Document, set visible to false(which
I believe is the default) and delete the picture (which you would have to
figure out if its a shape or inline shape and are part of different
collections) and then save the word document after deleting the picture.
Here is a script I used to delete the second shape in the document t2.doc:
Set objWord = CreateObject("Word.Application")
Set objDoc = objWord.Documents.Open("c:\t2.doc")
objWord.Visible = false
Set objRange = objDoc.Range()
objRange.inlineshapes(2).delete
objdoc.Save
objWord.Quit
old man