Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

private void bntGhi_Click(object sender, EventArgs e) { FileStream fs = new FileStream("myfile.txt", FileMode.Append, FileAc cess.Write); StreamWriter sw = new StreamWriter(fs); sw.Write(textBox1.

Text); sw.Write(" "); sw.WriteLine(textBox2.Text); sw.Flush(); sw.Close(); fs.Close(); } private void bntDoc_Click(object sender, EventArgs e) { FileStream fs = new FileStream("myfile.txt", FileMode.Open); StreamReader sw = new StreamReader(fs); richTextBox1.Text = sw.ReadToEnd(); sw.Close(); fs.Close(); }

You might also like