private void Mostrar() { try { DataListado.DataSource = EPrecio.Mostrar(); OcultarColumnas(); } catch (Exception Exc) { MensajeError(Exc.Message); } }
private void TxtCod_precio_DoubleClick(object sender, EventArgs e) { FPrecioLista Listado = new FPrecioLista(); Dt = EPrecio.Mostrar(); if (Dt.Rows.Count == 0) { MensajeError("No Existen Registros!"); } else { Listado.TxtFlag = "TipoCliente"; Listado.ShowDialog(); } }
private void TxtCod_precio_DoubleClick(object sender, EventArgs e) { FPrecioLista Listado = new FPrecioLista { TxtFlag = "ArtPrecio" }; Dt = EPrecio.Mostrar(); if (Dt.Rows.Count == 0) { MensajeError("No Existen Registros Disponibles!"); } else if (Dt.Rows.Count != 0) { Listado.ShowDialog(); } }
private void TxtCod_precio_KeyDown(object sender, KeyEventArgs e) { if (e.KeyCode == Keys.F12) { FPrecioLista Listado = new FPrecioLista(); Dt = EPrecio.Mostrar(); if (Dt.Rows.Count == 0) { MensajeError("No Existen Registros!"); } else { Listado.TxtFlag = "TipoCliente"; Listado.ShowDialog(); } } }
private void TxtCod_precio_KeyDown(object sender, KeyEventArgs e) { if (e.KeyCode == Keys.F12) { FPrecioLista Listado = new FPrecioLista { TxtFlag = "ArtPrecio" }; Dt = EPrecio.Mostrar(); if (Dt.Rows.Count == 0) { MensajeError("No Existen Registros Disponibles!"); } else if (Dt.Rows.Count != 0) { Listado.ShowDialog(); } } }
private void Registros() { Dt = EPrecio.Mostrar(); LbTotalReg.Text = Convert.ToString(Dt.Rows.Count.ToString()); }