Quote:
Originally Posted by Jennifer Murphy
So I take it there is no wdBordersAll or something like that, right? 
|
You could use something like:
ActiveDocument.Tables(1).Rows(1).Borders.Enable = False
but that would remove the bottom border from the row as well. You might remedy that with code like:
Code:
With ActiveDocument.Tables(1)
.Rows(1).Borders.Enable = False
.Rows(2).Borders.Enable = True
End With