Sub
GrafikEinfügen()
Dim
intChoice
As
Integer
Dim
strPath
As
String
Application.FileDialog(msoFileDialogOpen).AllowMultiSelect =
False
intChoice = Application.FileDialog(msoFileDialogOpen).Show
If
intChoice <> 0
Then
strPath = Application.FileDialog( _
msoFileDialogOpen).SelectedItems(1)
End
If
Selection.
GoTo
What:=wdGoToBookmark, Name:=
"TM_Unterschrift"
Selection.InlineShapes.AddPicture FileName:= _
strPath, LinkToFile:=
False
, _
SaveWithDocument:=
True
End
Sub