private void BtnListar_Click(object sender, EventArgs e) { FPrecioLista Listado = new FPrecioLista { TxtFlag = 0.ToString() }; Listado.ShowDialog(); }
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_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(); } } }