View Single Post
 
Old 10-13-2023, 12:22 AM
shortbred shortbred is offline Windows 10 Office 2021
Novice
 
Join Date: Oct 2023
Posts: 4
shortbred is on a distinguished road
Default

Quote:
Originally Posted by vivka View Post
Hi! Catch it:
Code:
Sub Replace_Pic()
    
    selection.Find.ClearFormatting
    selection.Find.Replacement.ClearFormatting
    With selection.Find
       .text = "^g"
       .MatchWildcards = False
       .Execute
       If .found Then
          selection.InlineShapes.AddPicture filename:= _
            "d:\Desktop\2.jpg", LinkToFile:=False, _
            SaveWithDocument:=True
       End If
    End With
End Sub
Thank you so much!
Reply With Quote