primer form de informe listo
This commit is contained in:
@@ -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();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user