Esempio n. 1
0
        private void quảnLýCâyCảnhToolStripMenuItem_Click(object sender, EventArgs e)
        {
            QuanLyCayCanh qlhd = new QuanLyCayCanh(name, id);

            this.Hide();
            qlhd.Show();
        }
Esempio n. 2
0
 private void btnLogin_Click(object sender, EventArgs e)
 {
     using (SqlConnection con = new SqlConnection(connString))
     {
         con.Open();
         SqlCommand comm = new SqlCommand();
         comm.Connection  = con;
         comm.CommandText = "SP_Login";
         comm.CommandType = CommandType.StoredProcedure;
         comm.Parameters.AddWithValue("@username", tbUsername.Text);
         comm.Parameters.AddWithValue("@password", tbPassword.Text);
         var reader = comm.ExecuteReader();
         if (reader.HasRows)
         {
             this.Hide();
             QuanLyCayCanh qlcc = new QuanLyCayCanh(tbUsername.Text);
             qlcc.Show();
         }
         else
         {
             MessageBox.Show("Thông tin đăng nhập không chính xác hoặc không tồn tại, vui lòng kiểm tra lại thông tin", "Đăng nhập thất bại", MessageBoxButtons.OK, MessageBoxIcon.Error);
             tbUsername.Focus();
         }
     }
 }