My code adds a row to a table. The table is outlined. I want my newly
added row to not be outlined, yet the rest of the table to remain outlined.
How can I "turn off" the outlining for that one single row? (I've looked at
ListString, ListFormat, OutlineLevel, and anything else I could think of, to
no avail. It can't be as hard as I'm making it!!)
TIA
Helmut Weber - 22 Sep 2006 21:27 GMT
Hi zSplash,
like this:
Sub Test456()
Dim oTbl As Table
Set oTbl = ActiveDocument.Tables(1)
With oTbl
.Rows.Add
.Rows.Last.Range.ListFormat.RemoveNumbers
End With
End Sub

Signature
Greetings from Bavaria, Germany
Helmut Weber, MVP WordVBA
Win XP, Office 2003
"red.sys" & Chr$(64) & "t-online.de"
zSplash - 22 Sep 2006 22:25 GMT
Helmut!! You made my day! (It seems so simple when one knows what to do!)
Thanks so much, and have a wonderful weekend!!
st.
> Hi zSplash,
>
[quoted text clipped - 8 lines]
> End With
> End Sub