I have attempted to get appropriate code using the VB Editor and a macro in Word
I was able to get a macro to
insert a picture and a macro to insert a textbox
I was unable to make one to insert a textbox and insert a picture inside it.
I tried this code in VFP6 without success
Can anyone offer a way?
Has anyone got a URL for the parameters of a picture object like .ht for example?
Thanks
Webber
I was able to get a macro to
insert a picture and a macro to insert a textbox
I was unable to make one to insert a textbox and insert a picture inside it.
I tried this code in VFP6 without success
Code:
newTextbox = loWord.Shapes.AddTextbox(0,100,100,100.100)
with newTextbox
objPicture = .InlineShapes.AddPicture(mywholepict , .F., .T.)
endwith
Can anyone offer a way?
Has anyone got a URL for the parameters of a picture object like .ht for example?
Thanks
Webber