private void comboBox1_SelectedIndexChanged(object sender, EventArgs e)
        {
            string aranan_kullanici = comboBox1.Text;

            bool poliklinik_ac_bool = KullaniciTanitmaKullaniciEkraniAc(aranan_kullanici);

            // false geri dönüş var ise veri var demektir
            if (poliklinik_ac_bool == false)
            {
                kullanici p = new kullanici();
                p.MdiParent = Program.anaekran;
                p.Show();
                this.Hide();
            }
        }
        private void button1_Click(object sender, EventArgs e)
        {
            DialogResult onay = new DialogResult();

            onay = MessageBox.Show("Devam Etmek İstiyormusunuz?", "Uyarı", MessageBoxButtons.YesNo);

            if (onay == DialogResult.Yes)
            {
                kayıteklemekontrol.a = onay.ToString();
                kullanici kullaniciekle = new kullanici();
                //  kullaniciekle.kayitsayisisorgula();
                buttonclick.button      = true;
                kullaniciekle.MdiParent = Program.anaekran;
                kullaniciekle.Show();
                this.Hide();
            }

            //  this.Close();
        }