private void buttonÇalışan_Click(object sender, EventArgs e) { if (yöneticiyadaçalışan == "Yönetici") { veriGösterYönetici(); if (labelsifreyönetici.Text == textBoxŞifre.Text) { FormPersonnel form = new FormPersonnel(); form.Show(); this.Hide(); } } if (yöneticiyadaçalışan == "Çalışan") { veriGösterÇalışan(); if (labelŞifreÇalışan.Text == textBoxŞifre.Text) { FormPerformanceGrades form = new FormPerformanceGrades(); form.nereden = "Çalışan"; form.çalışanID = textBoxID.Text; form.Show(); this.Hide(); } } }
private void button4_Click(object sender, EventArgs e) { FormPerformanceGrades form = new FormPerformanceGrades(); if (personelEkledenGelen == "Doğru") { form.personelEkledenGelen1 = "Doğru"; } form.personelIsim = textBox1.Text; form.personelId = textBox2.Text; form.personelDepartment = textBox3.Text; form.personelGorev = textBox4.Text; form.degistir = true; form.Show(); this.Hide(); }
private void button1_Click(object sender, EventArgs e) { if ((textBox1.Text == "") || (textBox2.Text == "") || (textBox3.Text == "") || (textBox4.Text == "") || (comboBox2.Text == "") || (textBox5.Text == "") || (textBox6.Text == "") || (textBox7.Text == "") || (comboBox1.Text == "") || (comboBox3.Text == "") || (textBox12.Text == "") ||(textBox9.Text=="")|| (textBox13.Text == "")) { MessageBox.Show("Lütfen tüm alanları doldurunuz."); } else { FormPerformanceGrades form = new FormPerformanceGrades(); form.kaydet = true; form.personelIsim = label15.Text; form.personelId = label16.Text; form.personelDepartment = label17.Text; form.personelGorev = label18.Text; form.Show(); this.Hide(); } }