0

i need to create an application which writes text into a word document while typing on a TextBox.any one knows a interface to achieve this?

chamara
  • 12,649
  • 32
  • 134
  • 210
  • possible duplicate of [How can a Word document be created in C#?](http://stackoverflow.com/questions/10412/how-can-a-word-document-be-created-in-c) – Binary Worrier Jun 02 '11 at 10:13
  • You can create the word file at server side and send it back to the client side. – PSK Jun 02 '11 at 10:14
  • Rob z has an excellent answer to this question [here](http://stackoverflow.com/questions/10412/how-can-a-word-document-be-created-in-c/10423#10423) – Binary Worrier Jun 02 '11 at 10:14

1 Answers1

1

If you are talking about creating and/or filling a Word document completely from code, I recommend that you take a look at the (commercial) Aspose.Words library.

If you are talking about "remote-controlling" Word from your own application, I recommend that you take a look at Microsoft Office Automation.

Uwe Keim
  • 39,551
  • 56
  • 175
  • 291