示例#1
0
        private void btnGuardar_Click(object sender, EventArgs e)
        {
            //Insertar
            if (Editar == false)
            {
                try
                {
                    ObjCN.InsertProduct(txtNombre.Text, txtDescripcion.Text, txtMarca.Text, Convert.ToInt32(txtPrecio.Text), Convert.ToInt32(txtStock.Text));
                    MessageBox.Show("Se Guardo Correctamente");
                    MostrarProducto();
                    LimpiarForm();
                }
                catch (Exception ex)
                {
                    MessageBox.Show("no se pudo insertar el registro" + ex);
                }

                //Editar
            }
            if (Editar == true)
            {
                try
                {
                    ObjCN.EditarProduc(txtNombre.Text, txtDescripcion.Text, txtMarca.Text, Convert.ToInt32(txtPrecio.Text), Convert.ToInt32(txtStock.Text), Convert.ToInt32(idProducto));
                    MessageBox.Show("Se Edito correctamente");
                    MostrarProducto();
                    LimpiarForm();
                    Editar = false;
                }
                catch (Exception ex)
                {
                    MessageBox.Show("no se pudo editar el producto" + ex);
                }
            }
        }