예제 #1
0
        private void btnTimKiem_Click(object sender, EventArgs e)
        {
            string key = txtKHTTSearch.Text;

            if (key.Trim() != "")
            {
                grcKHTTSearch.DataSource = KhachHangThanThietService.Search(key);
            }
            else
            {
                grcKHTTSearch.DataSource = KhachHangThanThietService.LoadDataTable();
            }
        }
예제 #2
0
 private void txtKHTTSearch_KeyDown(object sender, KeyEventArgs e)
 {
     if (e.KeyCode == Keys.Enter)
     {
         string key = txtKHTTSearch.Text;
         if (key.Trim() != "")
         {
             grcKHTTSearch.DataSource = KhachHangThanThietService.Search(key);
         }
         else
         {
             grcKHTTSearch.DataSource = KhachHangThanThietService.LoadDataTable();
         }
     }
 }