Example #1
0
        private void buton_bul2(object sender, EventArgs e)
        {
            Button btn2 = sender as Button;

            sanatci_id = int.Parse(btn2.Tag.ToString());
            Form Sanatcilar = new Sanatcilar();

            Sanatcilar.Show();
        }
Example #2
0
        private void label_bul2(object sender, EventArgs e)
        {
            Label lbl2 = sender as Label;

            sanatci_id = int.Parse(lbl2.Tag.ToString());
            Form Sanatcilar = new Sanatcilar();

            Sanatcilar.Text = sanatci_id.ToString();
            Sanatcilar.Show();
        }
Example #3
0
        private void buton_bul(object sender, EventArgs e)
        {
            Button btn = sender as Button;

            Sanatid        = int.Parse(btn.Tag.ToString());
            Form1.santciId = Sanatid;
            Form sanat = new Sanatcilar();

            sanat.Show();
        }
Example #4
0
        private void label_bul(object sender, EventArgs e)
        {
            Label lbl = sender as Label;

            Sanatid        = int.Parse(lbl.Tag.ToString());
            Form1.santciId = Sanatid;
            Form sanat = new Sanatcilar();

            sanat.Text = Sanatid.ToString();
            sanat.Show();
        }