//Método BuscarApellidos
 private void BuscarApellidos()
 {
     this.dataListado.DataSource = NUsuario.BuscarApellido(this.txtBuscar.Text);
     this.OcultarColumnas();
     lblTotal.Text = "Total de Registros: " + Convert.ToString(dataListado.Rows.Count);
 }