-------------------------------

I have an image (Image1) in a table of the word document.
when I write ObjWdDoc.Image1. (VB 6) it doesn't provide a list of properties for Image1!!

The same for img. if I use:
VB Code:
  1. Dim il As InlineShape
  2. Dim img As Image
  3. Set il = objDoc.InlineShapes(1)
  4. Set img = il.OLEFormat.Object

Trying:
VB Code:
  1. Dim il As InlineShape
  2. Dim img As Object
  3. For Each il In objWdDoc.InlineShapes
  4.     MsgBox (il.OLEFormat.ClassType)
  5. Next il
the result is forms.image.1

So how can I refer to it and set the picture?
-------------------------------