private void CargarDatos() { IBLLHuesped _BLLHuesped = new BLLHuesped(); IBLLPais _BLLPais = new BLLPais(); List <Pais> lista = null; // Cambiar el estado this.CambiarEstado(EstadoMantenimiento.Ninguno); // Configuracion del DataGridView para que se vea bien la imagen. dgvDatos.AutoGenerateColumns = false; // dgvDatos.RowTemplate.Height = 100; dgvDatos.AutoSizeColumnsMode = DataGridViewAutoSizeColumnsMode.DisplayedCells; // Cargar el DataGridView this.dgvDatos.DataSource = _BLLHuesped.GetAllHuesped(); // Cargar el combo this.cmbPais.Items.Clear(); lista = _BLLPais.GetAllPais(); foreach (Pais oPais in lista) { this.cmbPais.Items.Add(oPais); } // Colocar el primero como default this.cmbPais.SelectedIndex = 0; }
private void toolStripBtnBuscar_Click(object sender, EventArgs e) { IBLLHuesped _BLLHuesped = new BLLHuesped(); double filtro = 0; try { //filtro = Double.Parse(this.txtFiltro.Text); this.dgvDatos.AutoGenerateColumns = false; this.dgvDatos.DataSource = _BLLHuesped.GetAllHuesped(); } catch (Exception er) { StringBuilder msg = new StringBuilder(); msg.AppendFormat("Message {0}\n", er.Message); msg.AppendFormat("Source {0}\n", er.Source); msg.AppendFormat("InnerException {0}\n", er.InnerException); msg.AppendFormat("StackTrace {0}\n", er.StackTrace); msg.AppendFormat("TargetSite {0}\n", er.TargetSite); _MyLogControlEventos.ErrorFormat("Error {0}", msg.ToString()); MessageBox.Show(msg.ToString(), "Error", MessageBoxButtons.OK, MessageBoxIcon.Error); } }