14 Mayıs 2010 Cuma

C# da Text Dosyada Kayıt Arama İş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";
}

private void button3_Click(object sender, EventArgs e)
{
Boolean bul;
bul = false;
dosya = new FileStream(yol, FileMode.OpenOrCreate, FileAccess.Read);
StreamReader okuma;
okuma = new StreamReader(dosya);
do
{
ad = okuma.ReadLine();
soyad = okuma.ReadLine();
tel = okuma.ReadLine();
if (textBox1.Text == ad)
{
bul = true;
textBox2.Text = soyad;
textBox3.Text = tel;
}
}
while (ad != null);
if (bul == false) MessageBox.Show("Aradığınız Kayıt Bulunamadı");
okuma.Close();
}

Hiç yorum yok:

Yorum Gönder