Send a Picture to MS Word ??
I found the following code which is very helpful. However, I want to place the picture in a designated area. I don't know how to specify at what location the picture is to be inserted. Anyone know how
'@@@@@@@@@@@@
Dim wrd As Object
Dim wrd1 As Object
Dim qaZ As Object
Set wrd = CreateObject("word.document")
wrd.Application.Visible = True
Set wrd1 = GetObject(, "Word.Application")
wrd1.documents.Add
wrd1.Visible = True
Set qaZ = wrd1.Activedocument
qaZ.shapes.addpicture = "c:\test.jpg"