vote up 0 vote down star

I have a C# application where i want to implement a logic for a programm which will open the word document and go to a certain place in the page and create a Table and put values in that. Can any one tell me how to implement this. I am using Visual studio 2005

flag
(re your comment to me) I hate to tell you this, but Word is not a managed application. So to use the Word app itself, you are going to have to use the COM api... the alternative is to use a 3rd-party tool to write word files directly (easier with .docx than .doc). – Marc Gravell Nov 12 '08 at 13:07

5 Answers

vote up 0 vote down

Word will quite happily open a file in HTML with the extension .Doc. You can have all the formatting you want by using an internal style sheet. A very similar question came up here:

Export to Word Document in C#

link|flag
vote up 0 vote down

i am looking to format my dynamic html asp.net table. can some one give me url or expalin, how to formate dynamic tables in asp.net

thanks

link|flag
vote up 0 vote down

If you don't want to use Word Automation, e.g. you don't have Word installed on the computer running your program, you should have a look at Aspose.Words.

The only problem is that it's not free.

link|flag
vote up 0 vote down

This should help as well.
http://www.codeproject.com/KB/cs/Word_Automation.aspx

link|flag
vote up 1 vote down

Look up "Word Automation".

For example, KB316384, which covers:

The sample code in this article demonstrates how to do the following:

  • Insert paragraphs with text and formatting.
  • Browse and modify various ranges within a document.
  • Insert tables, format tables, and populate the tables with data.
  • Add a chart.
link|flag
Thanks.But i am looking for a solution which use .NET Reference instead of COM reference.Searched a lot.But couldnt findout .Can any one ? – Tim Sullivan Nov 12 '08 at 12:34

Your Answer

Get an OpenID
or

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