Populate a form and print out document - Stack Overflow most recent 30 from stackoverflow.com 2009-12-02T09:28:23Z http://stackoverflow.com/feeds/question/557480 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/557480/populate-a-form-and-print-out-document 2 Populate a form and print out document Ronnie 2009-02-17T15:52:32Z 2009-02-17T16:20:18Z <p>I have a word document which is a blank form. I need to be able to fill it in programatically using .NET, and print out the result.</p> <p>The form I have is a word document but I could obviously convert this to pdf if need be. </p> <p>Can anyone please help?</p> <p>Thanks</p> <p>Ronnie</p> http://stackoverflow.com/questions/557480/populate-a-form-and-print-out-document/557586#557586 1 Answer by Jozef Izso for Populate a form and print out document Jozef Izso 2009-02-17T16:15:20Z 2009-02-17T16:15:20Z <p>Do you have Word document in Open XML format or is it in old binary format?</p> <p>In Open XML this task can as easy as manipulation of XML inside a package (ZIP file).</p> <p>If you have binary Word file this can be tricky. You will need to use .NET Programmability Support for Office and <a href="http://msdn.microsoft.com/en-us/library/microsoft.office.interop.word(VS.80).aspx" rel="nofollow">Microsoft.Office.Interop.Word namespace</a>.</p> http://stackoverflow.com/questions/557480/populate-a-form-and-print-out-document/557587#557587 0 Answer by jro for Populate a form and print out document jro 2009-02-17T16:15:40Z 2009-02-17T16:15:40Z <p>Are you working on the client-side or the server-side?</p> <p>Client-side: start looking at <a href="http://msdn.microsoft.com/en-us/library/d2tx7z6d.aspx" rel="nofollow">Visual Studio Tools for Office</a>.</p> <p>Server-side: this one is difficult. My advice is <em>don't</em> run the client-side office libraries in a server environment. I'm working on this right now, and if you're in this boat, don't do it. Look for a client-side library.</p> http://stackoverflow.com/questions/557480/populate-a-form-and-print-out-document/557603#557603 0 Answer by Gishu for Populate a form and print out document Gishu 2009-02-17T16:20:18Z 2009-02-17T16:20:18Z <p>As Josef said, if it's OpenXML (Office 2007) document you can use the managed .net classes to easily update the document, which is basically modifying a bunch of xml files, zipped and renamed to .docx . Visual Studio tools for Office (VSTO) should help you out if need be for Office 2000 and 2003. For previous versions of office you'd need to use Office Automation COM Classes.. </p> <p>Now for updating fields in the word document, you'd need to identify where to insert text to. So if you have some bookmarks or markers to identify the places where you'd like to insert text... you can seek to that position and insert text. Printing the word doc should be simple since Word has printing support built in. Should be as easy as calling the right method.</p>