Microsoft Office Forums

Go Back   Microsoft Office Forums > >

 
 
Thread Tools Display Modes
Prev Previous Post   Next Post Next
  #1  
Old 02-08-2022, 02:15 PM
Axis Axis is offline VBA Insert Image(logo) into header for multiple Word Docs Windows 11 VBA Insert Image(logo) into header for multiple Word Docs Office 2019
Novice
VBA Insert Image(logo) into header for multiple Word Docs
 
Join Date: Feb 2022
Posts: 5
Axis is on a distinguished road
Default VBA Insert Image(logo) into header for multiple Word Docs

I've modified an old macro from gmayor that I've found. However, while I know how to choose only the first page header in a sub, I'm not sure how to do it in a function.




Code:
Option Explicit

Function ChangeLogo(oDoc As Document) As Boolean
Dim oSection As Section
Dim oHeader As HeaderFooter
Dim oShape As Shape
'change the path as appropriate
Const strImage As String = "C:\lh.png"
On Error GoTo err_handler
        For Each oSection In oDoc.Sections
        For Each oHeader In oSection.Headers
            Set oShape = oHeader.Shapes.AddPicture(FileName:=strImage)
                    With oShape
                        .RelativeHorizontalPosition = _
                        wdRelativeHorizontalPositionColumn
                        .RelativeVerticalPosition = _
                        wdRelativeVerticalPositionParagraph
                        .Left = CentimetersToPoints(-1)
                        .Top = CentimetersToPoints(-0.07)
                    End With
                    ChangeLogo = True
        Next oHeader
    Next oSection
lbl_Exit:
    Set oSection = Nothing
    Set oHeader = Nothing
    Set oShape = Nothing
    Exit Function
err_handler:
    ChangeLogo = False
    Resume lbl_Exit
End Function
My plan was to use Document Batch Processes to batch the process to run for all the word docs. However, the problem is I do not know how to set it for only the first page. Any help would be apprerciated!

Last edited by Axis; 02-08-2022 at 04:31 PM.
Reply With Quote
 



Similar Threads
Thread Thread Starter Forum Replies Last Post
Change Header in multiple Docs ambojoy Word 1 07-03-2020 07:10 PM
VBA Insert Image(logo) into header for multiple Word Docs insert multiple word docs into main word doc MimiCush Word 4 03-26-2018 01:07 PM
VBA Insert Image(logo) into header for multiple Word Docs Change Logo in Header in many Word-Documents ika Word VBA 15 10-20-2016 11:08 PM
VBA Insert Image(logo) into header for multiple Word Docs Macro to Insert Logo in header on 1st page only and bookmark it. youseeme Word VBA 9 09-16-2016 05:25 AM
Google Docs Power Point Short cuts / Insert Image etc Rado PowerPoint 4 04-11-2014 03:50 AM

Other Forums: Access Forums

All times are GMT -7. The time now is 07:10 PM.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2025, vBulletin Solutions Inc.
Search Engine Optimisation provided by DragonByte SEO (Lite) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
MSOfficeForums.com is not affiliated with Microsoft