How can I insert a picture in a Word template using a VBA form.
What I'm trying to do is for the user to browse for a picture, select it, add some description and insert it into the document with a preset picture size. And if nessesary repeat the operation for several pictures in the document
Ive used this for the picture description:
Private Sub CommandButton1_Click()
ActiveDocument.Tables(4).Columns(1).Cells(2).Range.Text = Txt12
End sub
JanTore
What I'm trying to do is for the user to browse for a picture, select it, add some description and insert it into the document with a preset picture size. And if nessesary repeat the operation for several pictures in the document
Ive used this for the picture description:
Private Sub CommandButton1_Click()
ActiveDocument.Tables(4).Columns(1).Cells(2).Range.Text = Txt12
End sub
JanTore