Recently company changed its name and logo, and we have in our section about 1600+ documents to change the company name and logo, i manage to construct the code to do the changes in the body of the document from different sources but failed to find and construct a code for the header to do the same what it did in the body, can some one help?
This is my current code without the header part which is working perfectly, i want to add to it the header part if possible.
Sub CommandButton1_Click()
'Code cmpiled and constrcuted from different sources
Dim xFileDialog As FileDialog, GetStr(1 To 100) As String '100 files is the maximum applying this code
Dim xFindStr As String
Dim xReplaceStr As String
Dim xDoc As Document
On Error Resume Next
Set xFileDialog = Application.FileDialog(msoFileDialogFilePicker)
With xFileDialog
.Filters.Clear
.Filters.Add "All WORD File ", "\*.docx", 1
.AllowMultiSelect = True
i = 1
If .Show = -1 Then
For Each stiSelectedItem In .SelectedItems
GetStr(i) = stiSelectedItem
i = i + 1
Next
i = i - 1
End If
Application.ScreenUpdating = False
xFindStr = InputBox("Find what:", "Kutools for Word", xFindStr)
xReplaceStr = InputBox("Replace with:", "Kutools for Word", xReplaceStr)
For j = 1 To i Step 1
Set xDoc = Documents.Open(FileName:=GetStr(j), Visible:=True)
Windows(GetStr(j)).Activate
Selection.Find.ClearFormatting
Selection.Find.Replacement.ClearFormatting
With Selection.Find
.Text = xFindStr 'Find What
.Replacement.Text = xReplaceStr 'Replace With
.Forward = True
.Wrap = wdFindAsk
.Format = False
.MatchCase = False
.MatchWholeWord = False
.MatchByte = True
.MatchWildcards = False
.MatchSoundsLike = False
.MatchAllWordForms = False
End With
Selection.Find.Execute Replace:=wdReplaceAll
Application.Run macroname:="NEWMACROS"
ActiveWindow.View.SplitSpecial = wdPanePrimaryFooter
Selection.Find.Execute Replace:=wdReplaceAll
Application.Run macroname:="NEWMACROS"
ActiveWindow.View.SplitSpecial = wdPanePrimaryHeader
Selection.Find.Execute Replace:=wdReplaceAll
Application.Run macroname:="NEWMACROS"
'To Replace Image
Dim originalImage As InlineShape
Dim newImage As InlineShape
Set originalImage = ActiveDocument.InlineShapes(1)
Dim imageControl As ContentControl
If originalImage.Range.ParentContentControl Is Nothing Then
Set imageControl = ActiveDocument.ContentControls.Add(wdContentControlPicture,originalImage.Range)
Else
Set imageControl = originalImage.Range.ParentContentControl
End If
Dim imageW As Long
Dim imageH As Long
imageW = originalImage.Width
imageH = originalImage.Height
originalImage.Delete
Dim imagePath As String
imagePath = "C:\Users\1123\Desktop\New folder\1.png" ' New Image Location
ActiveDocument.InlineShapes.AddPicture imagePath, False, True, imageControl.Range
With imageControl.Range.InlineShapes(1)
.Height = imageH
.Width = imageW
End With
' End of Replace Image
'Continue Find & Replace Code
ActiveDocument.Save
ActiveWindow.Close
Next
Application.ScreenUpdating = True
End With
MsgBox "Operation end, please view", vbInformation
End Sub
Code for the Image Header
Sub CommandButton1_Click()
'Code cmpiled and constrcuted from different sources
Dim xFileDialog As FileDialog, GetStr(1 To 100) As String '100 files is
the maximum applying this code
Dim xFindStr As String
Dim xReplaceStr As String
Dim xdoc As Document
On Error Resume Next
Set xFileDialog = Application.FileDialog(msoFileDialogFilePicker)
With xFileDialog
.Filters.Clear
.Filters.Add "All WORD File ", "*.docx", 1
.AllowMultiSelect = True
i = 1
If .Show = -1 Then
For Each stiSelectedItem In .SelectedItems
GetStr(i) = stiSelectedItem
i = i + 1
Next
i = i - 1
End If
Application.ScreenUpdating = False
xFindStr = InputBox("Find what:", "Kutools for Word", xFindStr)
xReplaceStr = InputBox("Replace with:", "Kutools for Word",
xReplaceStr)
For j = 1 To i Step 1
Set xdoc = Documents.Open(FileName:=GetStr(j), Visible:=True)
Dim headerShape As Shape
Dim newShapeFile As String
Dim leftPos As Single
Dim topPos As Single
Dim width As Single
Dim height As Single
Dim section As section
' Set the path to the new shape file (e.g., an image or other object)
newShapeFile = "C:\Users\q013031\Desktop\Where to see your JD on SAP Portal.jpg" ' Change to your new shape file path
' Loop through all sections in the document
For Each section In xdoc.Sections
' Check if the section has a header
If section.Headers(wdHeaderFooterPrimary).Exists Then
' Set the header shape in the primary header of the section
On Error Resume Next
Set headerShape = section.Headers(wdHeaderFooterPrimary).Shapes(1)
On Error GoTo 0
' Check if a shape (image or other object) exists in the header
If Not headerShape Is Nothing Then
' Get the size and position of the existing shape
leftPos = headerShape.Left
topPos = headerShape.Top
width = headerShape.width
height = headerShape.height
' Delete the existing shape
headerShape.Delete
' Insert the new shape into the header while preserving
size and position
Set headerShape =
section.Headers(wdHeaderFooterPrimary).Shapes.AddPicture(FileName:=newS
hapeFile, LinkToFile:=False, SaveWithDocument:=True)
' Set the size and position of the new shape to match
the original
headerShape.Left = leftPos
headerShape.Top = topPos
headerShape.width = width
headerShape.height = height
End If
End If
Next section
ActiveDocument.Save
ActiveWindow.Close
Next
Application.ScreenUpdating = True
End With
MsgBox "Operation end, please view", vbInformation
MsgBox "Shapes in all headers replaced while preserving size and
position!", vbInformation
End Sub
Please, try the next solution. It will iterate between all documents in a folder chosen by user and change the header elements (text and picture):