Esempio n. 1
0
 private void btnTimKiem_Click(object sender, EventArgs e)
 {
     if (txtMaChucVu.Text.Length == 0)
     {
         MessageBox.Show("Bạn cần nhập mã tìm kiếm!", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
     }
     else
     {
         dgvChucVu.DataSource = lopcv.TimTheoMa(txtMaChucVu.Text);
         if ((dgvChucVu.RowCount - 1) == 0)
         {
             MessageBox.Show("Không có kết quả tìm kiếm nào.", "Notification", MessageBoxButtons.OK, MessageBoxIcon.Information);
         }
     }
 }