Filling a form with C# - Stack Overflow most recent 30 from stackoverflow.com 2009-11-26T01:58:11Z http://stackoverflow.com/feeds/question/958190 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/958190/filling-a-form-with-c 1 Filling a form with C# Mike Wills 2009-06-05T21:13:56Z 2009-06-05T21:42:18Z <p>I am researching filling out a form programatically. I have seen <a href="http://stackoverflow.com/questions/557480/populate-a-form-and-print-out-document">this question</a> which is pretty similar to what we want to do. But I have a few other questions.</p> <ol> <li>Is there any examples of this online to get me started?</li> <li>We have some areas where we have circle this option or X that option. How would that be handled?</li> </ol> <p>The form itself is in PDF and Word formats.</p> http://stackoverflow.com/questions/958190/filling-a-form-with-c/958202#958202 1 Answer by brendan for Filling a form with C# brendan 2009-06-05T21:16:50Z 2009-06-05T21:16:50Z <p>I've used ABC PDF with some success : <a href="http://www.websupergoo.com/abcpdf-1.htm" rel="nofollow">http://www.websupergoo.com/abcpdf-1.htm</a></p> http://stackoverflow.com/questions/958190/filling-a-form-with-c/958206#958206 0 Answer by Josh for Filling a form with C# Josh 2009-06-05T21:18:15Z 2009-06-05T21:18:15Z <p>We do programatic form filling of PDF's at my place of business A LOT! Honestly, I have looked into rolling a custom solution in the past, but we use a third party library called <a href="http://www.websupergoo.com/abcpdf-1.htm" rel="nofollow">ABCPDF</a>.</p> http://stackoverflow.com/questions/958190/filling-a-form-with-c/958272#958272 0 Answer by Maggie for Filling a form with C# Maggie 2009-06-05T21:42:18Z 2009-06-05T21:42:18Z <p>I've used the SDK from Mi-Co :</p> <p><a href="http://mi-corporation.com/page.php?pageid=13" rel="nofollow">http://mi-corporation.com/page.php?pageid=13</a></p> <p>It's awesome software that lets you build form software with .Net and is ink enabled for the tablet pc. I would look into buying something like this if you need a full featured form package as it would cost more to develop from scratch. It allows you to save the forms on a server and extract the data from the form into a database in addition to rendering it to tif or pdf. The SDK has hooks everywhere for customization.</p> <p>If you just need a simple form than it may be too much.</p>