tags:

views:

89

answers:

3

hi

i have pdf file and i need to read the text and to insert to any val.

how do to it with C# (winform) ?

thank's in advance

A: 

You will need a PDF library of some sort. PDFSharp can reportedly do this - create and edit pdf files.

filip-fku
thank's for the help,but in those sample i can only make new pdf file.and i need only to read the text from pdf file to any val in my C# program
Gold
+1  A: 

I'd suggest iTextSharp there's some sample code here http://www.codeproject.com/KB/string/pdf2text.aspx

Don
A: 

In order to read the contents of a pdf file, you will need a 3rd party dll file like the above mentioned ITextSharp or PDFSharp. But if you only want to display the pdf file to the user of the application, then you can use web browser control. provided that you have adobe acrobat installed.

Pavan Navali