primer form de informe listo

This commit is contained in:
fedpo
2024-12-02 20:36:33 +00:00
parent c17323ebe4
commit aeeae3c9b8
8 changed files with 118 additions and 32 deletions

View File

@@ -1,3 +1,5 @@
using Vista.Informes;
namespace Vista
{
public partial class PantallaPrincipal : Form
@@ -119,7 +121,29 @@ namespace Vista
{
ActiveMdiChild.Close();
}
var Frm = new FrmCategorias();
var Frm = new FrmInformeFacturaPorFecha();
Frm.MdiParent = this;
Frm.Show();
}
private void productoMasVendidoToolStripMenuItem_Click(object sender, EventArgs e)
{
if (ActiveMdiChild != null)
{
ActiveMdiChild.Close();
}
var Frm = new FrmInformeProductosMasVendidos();
Frm.MdiParent = this;
Frm.Show();
}
private void facturasPorClienteToolStripMenuItem_Click(object sender, EventArgs e)
{
if (ActiveMdiChild != null)
{
ActiveMdiChild.Close();
}
var Frm = new FrmInformeFacturasPorCliente();
Frm.MdiParent = this;
Frm.Show();
}