Oct 25, 2001 #1 ftpdoo Programmer Joined Aug 9, 2001 Messages 202 Location GB Hi, I've got a table in Word which i'm populating from VB... The table headings appear on the first page only.. How do i make these headings appear on each page?? Thanks, Jonathan
Hi, I've got a table in Word which i'm populating from VB... The table headings appear on the first page only.. How do i make these headings appear on each page?? Thanks, Jonathan
Oct 25, 2001 1 #2 Mossoft Programmer Joined Sep 12, 2001 Messages 127 Location EU Code below sets the first row of the first table to be a heading row (repeated after page break in table): <DocumentObject>.Tables(1).Rows(1).HeadingFormat = True M Upvote 0 Downvote
Code below sets the first row of the first table to be a heading row (repeated after page break in table): <DocumentObject>.Tables(1).Rows(1).HeadingFormat = True M
Oct 25, 2001 Thread starter #3 ftpdoo Programmer Joined Aug 9, 2001 Messages 202 Location GB Thankx, ) Upvote 0 Downvote