![]() |
|
|
|
#1
|
|||
|
|||
|
I didn't get your error running Vikka's code. You can also try: Code:
Sub BorderColor()
Dim oBrdr As Variant
Dim MyColor As Long
Application.ScreenUpdating = False
MyColor = 10027008 'InputBox("Specify color code", "Border Color")
For Each oBrdr In Selection.ParagraphFormat.Borders
With oBrdr
.LineStyle = wdLineStyleSingle
.LineWidth = wdLineWidth050pt
.Color = MyColor
End With
Next oBrdr
Application.ScreenUpdating = True
End Sub
|
|
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Can't change border color of Office windows | coffent | Office | 0 | 12-17-2020 09:21 AM |
Word 16/19 change font and outside border color (same color) eg is red change to pink
|
jec1 | Word VBA | 2 | 12-04-2019 11:32 PM |
VBA Word - Format ALL Tables - Apply Specific Formatting to Sets of Columns – Font, Border & Width
|
jc491 | Word VBA | 10 | 11-04-2015 04:02 PM |
How to change the color of Character Border?
|
tinfanide | Word | 4 | 10-27-2012 06:35 AM |
Apply font color programatically using VBA Word
|
divakarganta | Word VBA | 3 | 08-08-2012 08:05 PM |