![]() |
|
#1
|
|||
|
|||
|
I tried to change this code to replace the Normal Style font when it's Arial to Calibri, but I cannot make it work. I am using it with Batch Process Documents 4.9 (Graham Mayor). Can you please give me a little help? Thank you Code:
Function ChangeFont(oDoc As Document) As Boolean
Dim oStory As Range
On Error GoTo err_Handler
For Each oStory In oDoc.StoryRanges
oStory.Font.Name = "Arial"
If oStory.StoryType <> wdMainTextStory Then
While Not (oStory.NextStoryRange Is Nothing)
Set oStory = oStory.NextStoryRange
oStory.Font.Name = "Calibri"
Wend
End If
Next oStory
Set oStory = Nothing
ChangeFont = True
lbl_Exit:
Exit Function
err_Handler:
ChangeFont = False
Resume lbl_Exit
End Function
|
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Creating a text style which only changes the font and font size? | Jenson | Word | 3 | 03-04-2024 02:54 AM |
Check the font attached to a template's "Normal" style and report if it's not installed
|
Matt C | Word VBA | 3 | 10-31-2021 05:54 AM |
Replace table and figure caption style to another style Word VBA
|
laith93 | Word VBA | 7 | 08-27-2021 11:37 PM |
| Change Normal Style | JohnM | Word | 2 | 03-23-2016 07:40 AM |
Outlook2013 Normal Style
|
sus4n | Outlook | 3 | 08-07-2014 06:17 PM |