private void linkLabel1_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e) { Form2 frm2 = new Form2(); frm2.Show(); } private void button1_Click(object sender, EventArgs e) { StreamReader dosya = File.OpenText("D:\\son.txt"); string s = dosya.ReadLine(); while (s != null) { string[] son = s.Split(','); if((son[2]==textBox1.Text)&&(son[3]==textBox2.Text)) { Form3 frm3 = new Form3(); frm3.Show(); this.Hide(); break; } s = dosya.ReadLine(); } dosya.Close(); } string kon; private void button1_Click(object sender, EventArgs e) { StreamWriter dosya = File.AppendText("D:\\son.txt"); dosya.Write(textBox1.Text + ","); dosya.Write(textBox2.Text + ","); dosya.Write(textBox3.Text + ","); dosya.Write(textBox4.Text + ","); if (radioButton1.Checked == true) kon = radioButton1.Text; else kon = radioButton2.Text; dosya.Write(kon + ","); dosya.WriteLine(resim); dosya.Close(); MessageBox.Show("Kayıt Tamamlandı"); temizle(); } public void temizle() { foreach (Control nesne in this.Controls) { if (nesne is TextBox) { (nesne as TextBox).Clear(); } } textBox1.Focus(); } string resim; private void pictureBox1_Click(object sender, EventArgs e) { openFileDialog1.ShowDialog(); resim = openFileDialog1.FileName; pictureBox1.Image = Image.FromFile(resim); } private void Form3_FormClosed(object sender, FormClosedEventArgs e) { Application.Exit(); } private void Form3_Load(object sender, EventArgs e) { { dataGridView1.Rows.Clear(); int i = 0; StreamReader dosya = File.OpenText("D:\\son.txt"); string s = dosya.ReadLine(); while (s != null) { string[] son = s.Split(','); i++; dataGridView1.Rows.Add(son[0], son[1], son[2], son[3], son[4]); dataGridView1[5, i - 1].Value = Image.FromFile(son[5]); s = dosya.ReadLine(); } dosya.Close(); } }
© Copyright 2024 Paperzz