private void LLenarComboDelAlmacen() { try { AlmacenEN oRegistroEN = new AlmacenEN(); AlmacenLN oRegistroLN = new AlmacenLN(); if (oRegistroLN.ListadoParaCombos(oRegistroEN, Program.oDatosDeConexion)) { cmbAlmacen.DataSource = oRegistroLN.TraerDatos(); cmbAlmacen.DisplayMember = "Almacen"; cmbAlmacen.ValueMember = "idAlmacen"; cmbAlmacen.DropDownWidth = 268; if (oRegistroLN.TraerDatos().Rows.Count == 1) { cmbAlmacen.SelectedIndex = 0; } else { cmbAlmacen.SelectedIndex = -1; } } else { throw new ArgumentException(oRegistroLN.Error); } } catch (Exception ex) { MessageBox.Show(ex.Message, "Informacion del Almacen", MessageBoxButtons.OK, MessageBoxIcon.Warning); } }
private void LLenarListado() { try { this.Cursor = Cursors.WaitCursor; AlmacenEN oRegistrosEN = new AlmacenEN(); AlmacenLN oRegistrosLN = new AlmacenLN(); oRegistrosEN.Where = WhereDinamico(); if (oRegistrosLN.Listado(oRegistrosEN, Program.oDatosDeConexion)) { dgvLista.Columns.Clear(); System.Diagnostics.Debug.Print(oRegistrosLN.TraerDatos().Rows.Count.ToString()); if (ActivarFiltros == true) { dgvLista.DataSource = AgregarColumnaSeleccionar(oRegistrosLN.TraerDatos()); } else { dgvLista.DataSource = oRegistrosLN.TraerDatos(); } FormatearDGV(); this.dgvLista.ClearSelection(); tsbNoRegistros.Text = "No. Registros: " + oRegistrosLN.TotalRegistros().ToString(); } else { throw new ArgumentException(oRegistrosLN.Error); } }catch (Exception ex) { MessageBox.Show(ex.Message, "Llenar listado de registro en la lista", MessageBoxButtons.OK, MessageBoxIcon.Error); } finally { this.Cursor = Cursors.Default; } }