14 Mayıs 2010 Cuma

C# da Text Dosyaya Kayıt İşlemi

string ad, soyad, tel, yol, yol2;
FileStream dosya, dosya2;

private void Form1_Load(object sender, EventArgs e)
{
yol = Application.StartupPath + "\\telefon.txt";
yol2 = Application.StartupPath + "\\gecici.txt";
}
//Kaydet Butonu
private void button1_Click(object sender, EventArgs e)
{
ad = textBox1.Text;
soyad = textBox2.Text;
tel = textBox3.Text;
dosya = new FileStream(yol, FileMode.Append, FileAccess.Write);
StreamWriter yazma;
yazma = new StreamWriter(dosya);
yazma.WriteLine(ad);
yazma.WriteLine(soyad);
yazma.WriteLine(tel);
yazma.Close();
}

Hiç yorum yok:

Yorum Gönder