private void articulosToolStripMenuItem_Click(object sender, EventArgs e)
        {
            frmProducto frm = new frmProducto();

            frm.MdiParent = this;
            frm.Show();
        }
        private void articuloToolStripMenuItem_Click(object sender, EventArgs e)
        {
            frmProducto frmP = frmProducto.GetInstancia();

            //  frmP.MdiParent = this;
            frmP.Show();
        }
Example #3
0
        private void btnProducto_Click(object sender, EventArgs e)
        {
            this.Hide();
            frmProducto frmProducto = new frmProducto();

            frmProducto.Show();
        }
Example #4
0
 public frmProducto()
 {
     InitializeComponent();
     this.ttMensaje.SetToolTip(this.txtNombre, "Ingrese el Nombre del Producto");
     this.ttMensaje.SetToolTip(this.txtPrecioVenta, "Ingrese el Precio de Venta");
     this.ttMensaje.SetToolTip(this.cbCategoria, "Seleccione la categoría");
     frmProducto.f1 = this;
 }
 public static frmProducto GetInstancia()
 {
     if (_Instancia == null)
     {
         _Instancia = new frmProducto();
     }
     return(_Instancia);
 }
Example #6
0
        private void mnuProductos_Click(object sender, EventArgs e)
        {
            frmProducto form = new frmProducto();

            form.MdiParent = this;

            form.Show();
            form.dataListado.ClearSelection();
        }
        private void DataListadoCategoria_DoubleClick(object sender, EventArgs e)
        {
            frmProducto form = frmProducto.GetInstancia();
            string      par1, par2;

            par1 = Convert.ToString(this.DataListadoCategoria.CurrentRow.Cells["Id Categoria"].Value);
            par2 = Convert.ToString(this.DataListadoCategoria.CurrentRow.Cells["Nombre"].Value);
            form.setCategoria(par1, par2);
            this.Hide();
        }
        private void dgvCategoria_DoubleClick(object sender, EventArgs e)
        {
            frmProducto form = frmProducto.GetInstancia();
            string      par1, par2;

            par1 = Convert.ToString(this.dgvCategoria.CurrentRow.Cells["CategoryID"].Value);
            par2 = Convert.ToString(this.dgvCategoria.CurrentRow.Cells["CategoryName"].Value);
            form.setCategoria(par1, par2);
            // this.Hide();
        }
Example #9
0
 private void productosToolStripMenuItem_Click(object sender, EventArgs e)
 {
     try
     {
         frmProducto frmProducto = new frmProducto(u.Id_Usuario);
         frmProducto.MdiParent = this;
         foreach (Form frm in Application.OpenForms)
         {
             if (frm is frmProducto)
             {
                 frm.Show();
                 frm.Size        = MinimumSize;
                 frm.WindowState = FormWindowState.Normal;
                 return;
             }
         }
         frmProducto.Show();
     }
     catch (Exception ex)
     {
         MessageBox.Show(ex.Message, "Aviso",
                         MessageBoxButtons.OK, MessageBoxIcon.Error);
     }
 }
Example #10
0
 private void frmProducto_FormClosing(object sender, FormClosingEventArgs e)
 {
     _Instancia = null;
 }