private void button4_Click_1(object sender, EventArgs e)
        {
            form3 f = new form3();

            f.ID    = Convert.ToInt32(listBox2.Items[listBox2.SelectedIndex].ToString().Split(' ')[0]);
            f.islem = "goruntule";
            f.geri  = this;
            f.Show();
            this.Hide();
        }
        private void button1_Click(object sender, EventArgs e)
        {
            form3 f = new form3();

            f.sahip = ID;
            f.islem = "yeni";
            f.geri  = this;
            f.Show();
            this.Hide();
        }
        private void button2_Click(object sender, EventArgs e)
        {
            form3 f = new form3();

            f.ID    = Convert.ToInt32(listBox1.Items[listBox1.SelectedIndex].ToString().Split(' ')[0]);;
            f.sahip = ID;
            f.islem = "guncelle";
            f.geri  = this;
            f.Show();
            this.Hide();
        }