vote up 1 vote down star
1

I am trying to do something but I haven't found anything on google since I don't know how to word it to get the right results.

I have a Form with 9 TextBox controls, and a PlainText file with 9 lines of text.

I want to click a button which will then add the first line of text from the text file into the first TextBox, then the second line into the second textbox, and so on... Can anybody please provide any advice on how to do so?

flag

74% accept rate

1 Answer

vote up 8 vote down check

Try this:

using (StreamReader reader = File.OpenText("yourFileName.txt"))
{
    textBox1.Text = reader.ReadLine();
    textBox2.Text = reader.ReadLine();
    textBox3.Text = reader.ReadLine();
    textBox4.Text = reader.ReadLine();
    textBox5.Text = reader.ReadLine();
    textBox6.Text = reader.ReadLine();
    textBox7.Text = reader.ReadLine();
    textBox8.Text = reader.ReadLine();
    textBox9.Text = reader.ReadLine();
}

edit: changed solution to use File.OpenText instead of FileStream

link|flag
perfect - thank you so much :) I'd completely forgotten all about StreamReader it's been so long since i've used it I always use File.ReadAllText nowadays lol – baeltazor Sep 8 at 14:40
4  
File.OpenText would be simpler, but indeed. – Marc Gravell Sep 8 at 14:45
thank you Marc G. I haven't used OpenText before I will try it out :) – baeltazor Sep 8 at 15:09
thanks for the edit Donut, changing mine now :) – baeltazor Sep 8 at 15:13

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.