vote up 0 vote down star

I have 4 textboxes and I have to write what's contained in there to a textfile I'll randomly generate. How will I write textbox data to the text file? and exactly where in the code? If i do it in :

private void textBox1_TextChanged(object sender, EventArgs e)

and have it all in the boxes textchanged parts, I can only get one textbox written.

Also how will I generate a txt file, that I'll randomly name with a 5 lettered name?

flag

57% accept rate
um.. what is your goal? – Q8-coder Aug 13 at 7:04
It depends what conditions require you to save the file. Every time any of the text boxes are edited? On a button click? etc. – ThePower Aug 13 at 7:10
WinForms or WPF? – Oskar Aug 13 at 7:12
I want to save on a button click, I've just started so trying to learn – Lady Sour Aug 13 at 7:13
WinForms, it should be a Windows Application – Lady Sour Aug 13 at 7:17

1 Answer

vote up 2 vote down check
StreamWriter writeFile = new StreamWriter(fileLocation);
writeFile.WriteLine(textBox1.Text);
writeFile.WriteLine(textBox2.Text);
//etc.

writeFile.Close();

It depends what your aim is, as to when to save the file. If you want to save every time a text box text is changed, hook them all up to that event.

Althought if otherwise you could do it on a button click (save button?).

You will need to give more details for a more appropriate answer.

link|flag
How do i bind this to a button click? – Lady Sour Aug 13 at 7:09
The same as you did with the TextChanged event for the TextBox. Add a button to your form, then either double click the Click event in the Events or in code assign it as yourButton.Click += new EventHandler(yourButton_click); – ThePower Aug 13 at 7:12
thank you so much, I've done it =) – Lady Sour Aug 13 at 7:21

Your Answer

Get an OpenID
or

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