private void button3_Click(object sender, EventArgs e) { ADMIN aa = new ADMIN(label3.Text); aa.Show(); Visible = false; }
private void button1_Click(object sender, EventArgs e) { ADMIN d = new ADMIN(label2.Text); d.Show(); Visible = false; }
private void button1_Click(object sender, EventArgs e) { string sqle = "SELECT * FROM employee WHERE ID_EMPLOYEES ='" + textUadd.Text + "'AND EMP_PASSWORD ='******'"; string ConnectStringadd = "datasource = localhost; username= root;" + "password=; database = database"; MySqlConnection cona = new MySqlConnection(ConnectStringadd); MySqlCommand cmd = new MySqlCommand(sqle, cona); cona.Open(); MySqlDataReader readere = cmd.ExecuteReader(); if (readere.Read() == false) { MessageBox.Show("คุณกรอก ID หรือ PASSWORD ไม่ถูกต้อง หรือไม่ได้กรอกข้อมูล"); } else { ADMIN p1 = new ADMIN(textUadd.Text); p1.Show(); Visible = false; //MessageBox.Show("LOGIN PASS"); /*if ((readere.Read() == true)) <อันนี้คือส่วนของพนักงาน ยังไม่แน่ใจ เพราะยังไม่ได้ลองเชื่อมหน้าพนักงานจริง (เชื่อมแล้วเดี๋ยวแก้ให้)> * { * this.Hide(); * admin a1 = new admin(textBox1.Text); * //w1.Show(); * //MessageBox.Show("LOGIN PASS"); * }*/ } }