Example #1
0
        private void puntoDeVentaToolStripMenuItem_Click(object sender, EventArgs e)
        {
            PuntoVenta punto = null;

            punto           = PuntoVenta.Instancia();
            punto.MdiParent = this;
            punto.Show();
        }
Example #2
0
 public static PuntoVenta Instancia()
 {
     if (frmInst == null || frmInst.IsDisposed == true)
     {
         frmInst = new PuntoVenta();
     }
     frmInst.BringToFront();
     return(frmInst);
 }