![]() |
#31
|
||||
|
||||
![]()
That makes it a whole lot more complicated:
Code:
Sub CaptionBold() Application.ScreenUpdating = False Dim Shp As Shape With ActiveDocument On Error Resume Next .Styles.Add "CaptionLabel", wdStyleTypeCharacter On Error GoTo 0 .Styles("CaptionLabel").Font.Bold = True .Styles("Caption").Font.Bold = False Call Processor(.Range) For Each Shp In .Shapes If Not Shp.TextFrame Is Nothing Then With Shp.TextFrame .TextRange.InsertAfter vbCr .TextRange.Paragraphs.Last.Style = "Normal" Call Processor(.TextRange) .TextRange.Characters.Last.Delete End With End If Next End With Application.ScreenUpdating = True End Sub Sub Processor(Rng As Range) With Rng With .Find .ClearFormatting .Text = "" .Style = "Caption" .Replacement.Text = "" .Forward = True .Wrap = wdFindStop .Format = True .MatchCase = False .MatchWholeWord = False .MatchWildcards = False .MatchSoundsLike = False .MatchAllWordForms = False .Execute End With Do While .Find.Found With .Paragraphs.Last.Range.Duplicate .End = .Start + Len(Split(.Text, " ")(0)) + 1 .MoveEndUntil " ", wdForward .Style = "CaptionLabel" End With .Collapse wdCollapseEnd .Find.Execute Loop End With End Sub
__________________
Cheers, Paul Edstein [Fmr MS MVP - Word] |
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
Matching text style to drawing object style | notarichman | PowerPoint | 0 | 03-07-2011 11:34 AM |
![]() |
judicial85 | Word | 4 | 02-18-2011 04:24 AM |
Formatting of TOC's generated based on the "Caption" style | JustinWord1000 | Word | 1 | 02-15-2011 03:13 PM |
unwanted text in a label | J J J J | Word | 0 | 11-22-2010 11:04 AM |
Custom caption label annoyance | zac | Word | 1 | 08-29-2010 09:56 AM |