Esempio n. 1
0
        private void btnTimkiem_Click(object sender, EventArgs e)
        {
            if (txtTenSanPham.Text == string.Empty && cbMaNCU.Text == string.Empty)
            {
                MessageBox.Show("Bạn hãy nhập điều kiện tìm kiếm", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Warning);
                return;
            }

            DTO_SP sp = new DTO_SP();

            sp.Mancu = cbMaNCU.Text;
            sp.Tensp = txtTenSanPham.Text;
            DataTable dt = BUS_SP.timkiemSP(sp.Mancu, sp.Tensp);

            DGVSanPham.DataSource = dt;

            if (dt.Rows.Count == 0)
            {
                lblkqtksp.Text = "Không có bản ghi nào thoả mãn điều kiện tìm kiếm!";
            }
            else
            {
                lblkqtksp.Text = "Có " + dt.Rows.Count + " bản ghi nào thoả mãn điều kiện tìm kiếm!";
            }
            DANGNHAP.thaotac += "Tìm kiếm, ";
        }