Text_Dosya

Using System.IO; kütüphanesini unutmayınız.
private void linkLabel1_LinkClicked(object sender,
LinkLabelLinkClickedEventArgs e)
{
Form2 frm2 = new Form2();
frm2.Show();
}
public static int sayac = 0;
private void button1_Click(object sender,
EventArgs e)
{
StreamReader dosya =
File.OpenText("D:\\09102014.txt");
string oku = dosya.ReadLine();
while (oku != null)
{
string[] bol = oku.Split('-');
if (bol[3]==textBox1.Text &&
bol[4]==textBox2.Text)
{
Form3 frm3 = new Form3();
frm3.Show();
this.Hide();
break;
}
oku = dosya.ReadLine();
}
sayac = sayac + 1;
this.Text = sayac.ToString();
if (sayac==3)
{
Application.Exit();
}
}
private void button1_Click(object sender, EventArgs e)
{
StreamWriter dosya =
File.AppendText("D:\\09102014.txt");
dosya.Write(textBox1.Text+"-");
dosya.Write(textBox2.Text+"-");
dosya.Write(comboBox1.Text+"-");
dosya.Write(textBox3.Text+"-");
dosya.WriteLine(textBox4.Text);
dosya.Close();
MessageBox.Show("Kayıt Tamamlandı");
foreach (Control nesne in this.Controls)
{
if (nesne is TextBox)
{
(nesne as TextBox).Clear();
}
}
textBox1.Focus();
comboBox1.Text = "";
}