añadido skeleton de Informes

This commit is contained in:
fedpo
2024-12-02 16:57:28 +00:00
parent 53272a5491
commit b6b1e69d0f
12 changed files with 558 additions and 0 deletions

View File

@@ -112,5 +112,16 @@ namespace Vista
Frm.MdiParent = this;
Frm.Show();
}
private void facturasPorFechaToolStripMenuItem_Click(object sender, EventArgs e)
{
if (ActiveMdiChild != null)
{
ActiveMdiChild.Close();
}
var Frm = new FrmCategorias();
Frm.MdiParent = this;
Frm.Show();
}
}
}