I am trying to create a table with a header. I want this header to be repeated for each new page that the table takes. How can I do this in C# with Word 2007 Interop?

link|improve this question

feedback

2 Answers

up vote 3 down vote accepted
Microsoft.Office.Interop.Word.Table table;
/* ... */
table.Rows[1].HeadingFormat = -1;
link|improve this answer
Negative 1! WTF! Is Microsoft just screwing with us now? 1K Thanks. – Tod Dec 23 '11 at 11:18
feedback

Have a look here:

http://support.microsoft.com/kb/316384

This will get you off to a start.

link|improve this answer
I already know how to create a document and a table. What I need to know is how to create a table that will create a header for each new page. The problem I see is that once you create the table you must set a fix number of rows and columns... If I decide to write headers it will crash because there is not enough rows in the table for the rest of the data I have to place in the table. – Partial Nov 29 '09 at 22:33
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.