programming tables

B

Bruce Baker

Hi

I have a VB 6 application and have added a table to the word document I have
opened ok...

(objWd.ActiveDocument.Tables.add wrdSelection.Range, NumRows:=rs.RecordCount
+ 1, NumColumns:=4)

The first row in the table is the header-row

I just need to know how I tell the table to 'repeat as header row at the top
of each page'


thanks
Bruce
 
J

Jonathan West

Hi Bruce,

Set the HeadingFormat property of the first Row of the table to True
 
Top