private void btn_compras_Click(object sender, EventArgs e) { try { Compra_Listado cl = new Compra_Listado(); cl.ShowDialog(); } catch (Exception ex) { Ventana_Error ve = new Ventana_Error(ex); ve.ShowDialog(); } }
private void btn_facturas_vencidas_Click_1(object sender, EventArgs e) { Compra_Listado cl = new Compra_Listado(true); cl.ShowDialog(); }