コード例 #1
0
 void Carregar()
 {
     try
     {
         if (cbxFiltro.Text == "CODIGO")
         {
             dgvCadastrados.DataSource = controllerCliente.CarregarClientePorCodigo(txtProcurar.Text);
         }
         if (cbxFiltro.Text == "NOME")
         {
             dgvCadastrados.DataSource = controllerCliente.CarregarClientePorNome(txtProcurar.Text);
         }
         lblExibidosTotal.Text = "Exibidos total: " + dgvCadastrados.Rows.Count;
     }
     catch (Exception ex)
     {
         MessageBox.Show(ex.Message, "Erro!", MessageBoxButtons.OK, MessageBoxIcon.Error);
     }
 }