-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFrmAltasProductos.cs
86 lines (70 loc) · 2.58 KB
/
FrmAltasProductos.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace Ventas_David
{
public partial class FrmAltasProductos : Form
{
public FrmAltasProductos()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
BaseSQL objeto = new BaseSQL();
string cadenaSQL = "";
decimal precio = nudPre.Value;
try
{
cadenaSQL = "INSERT INTO PRODUCTOS(ID_FAB,ID_PRODUCTO,DESCRIPCION,PRECIO,EXISTENCIAS) Values";
cadenaSQL = cadenaSQL + "('" + txtIDFab.Text + "','" + txtIDProd.Text + "','" + txtDes.Text + "','" + precio.ToString("0.00") + "','" + nudExi.Value + "');";
objeto.ejecutar(cadenaSQL);
MessageBox.Show("Producto guardado correctamente");
txtIDFab.Text = "";
txtIDProd.Text = "";
txtDes.Text = "";
nudPre.Value = 0;
nudExi.Value = 0;
}
catch (Exception ex)
{
MessageBox.Show("Error al ejecutar la consulta SQL:" + ex.Message + cadenaSQL);
}
}
private void btnProc_Click(object sender, EventArgs e)
{
BaseSQL objeto = new BaseSQL();
string cadenaSQL = "";
cadenaSQL = "AltasProductos '" + txtIDFab.Text + "','" + txtIDProd.Text + "','" + txtDes.Text + "'," + nudPre.Value + "," + nudExi.Value + "";
try //Si la ejecuci�n se lleva a cabo correctamente
{
objeto.ejecutar(cadenaSQL);
// Se despliega el mensaje para indicar que el registro del producto se guard� correctamente
MessageBox.Show("Producto guardado correctamente");
}
catch (Exception ex)
{
// Muestra el error en el mensaje para ver el error
MessageBox.Show("Error al ejecutar la consulta SQL:" + ex.Message + cadenaSQL);
// Se limpian los objetos
txtIDFab.Text = "";
txtIDProd.Text = "";
txtDes.Text = " ";
nudPre.Value = 0;
nudExi.Value = 0;
}
}
private void FrmAltasProductos_Load(object sender, EventArgs e)
{
}
private void nudPre_ValueChanged(object sender, EventArgs e)
{
}
}
}