Click here to Skip to main content
15,888,527 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi I have this code to read text Arabic and English:

<pre lang="cs">
try
            {
                this.textBox1.RightToLeft = RightToLeft.Yes;
                string line = null;
                System.IO.TextReader readFile = new StreamReader("C:\\net-informations.txt", Encoding.Default);
                line = readFile.ReadToEnd();
                textBox1.Text = line;
                readFile.Close();
                readFile = null;
            }
            catch (IOException ex)
            {
                MessageBox.Show(ex.ToString());
            }




I want to edit this code to read pdf files

thanks
Posted
Comments
Sandeep Mewara 16-May-11 7:21am    
Does not make any sense. What is the connection here - you red Arabic/English text with a code and now you ask read PDF?

You will need a PDF library such as iTextSharp[^] to help you.
 
Share this answer
 
I downloaded it, but I don't know how to use it.
can you help?
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900