
Format of Rows Added to a Table
Quote:
> The first row was a header. So that when the table extended to
> another page it was repeated, and the header font was BOLD so
> I need to set font to normal.
Do I understand this right -- you want the header to be bold on the
first page and not bold on the second? Or you don't want a repeating
header, and you want all the other rows not bold?
Quote:
> Can you recommend a good book about writing Word macros?
Unfortunately, no. I can recommend a few lousy ones.... ;) But if
you send a separate post with 'books' in the subject, you'll probably
get other opinions. For the basics -- which you're past -- I actually
found Microsoft's online programmer's guide to be most helpful, but
only the Word 97 version. For everything beyond that, the most
helpful places for me have been these newsgroups and and MVP site
at http://www.mvps.org/word
------------- "Life is nothing if you aren't obsessed." --John Waters
---------------------------------------------------------------------
Quote:
> > Set myNewRange = myTbl.Range
> > With myNewRange
> > .MoveStart Unit:=wdRow 'Range is whole table minus first row
> > .Shading.Texture = wdTextureNone
> > .ParagraphFormat.Alignment = wdAlignParagraphLeft
> > .Cells.VerticalAlignment = wdCellAlignVerticalTop
> > End With
> > > I have added row to an existing table, which had only 1 row. That row
> was
> > > formatted with a pattern of 25%, and the text was centered. All my added
> > > rows inherited that same format, which is not what I wanted. I wanted my
> > > added row to have no shading, to not be centered either vertically or
> > > horizontilly. How can I set the formatting for my added rows?