private void button6_Click(object sender, EventArgs e) { if (x == 0) { if (!txtNombre.Text.Equals("") && !txtExistencia.Text.Equals("") && !txtPrecio.Text.Equals("") && !txtBC.Text.Equals("")) { if (SQLCONN.NewProd(txtNombre.Text, txtPrecio.Text, txtPrecio.Text, txtBC.Text)) { MessageBox.Show("Producto agregado"); dataGridView1.DataSource = SQLCONN.getprod(); clear(); habi(false); } } else { MessageBox.Show("Llene todos los campos"); } } else { if (!txtNombre.Text.Equals("") && !txtExistencia.Text.Equals("") && !txtPrecio.Text.Equals("") && !txtBC.Text.Equals("")) { if (SQLCONN.UpProd(txtNombre.Text, txtPrecio.Text, txtExistencia.Text, txtBC.Text, dataGridView1.CurrentRow.Cells[0].Value.ToString())) { MessageBox.Show("Producto Actualizado"); dataGridView1.DataSource = SQLCONN.getprod(); habi(false); } } } }
private void button4_Click(object sender, EventArgs e) { if (!txtNombre.Text.Equals("") && !txtExistencia.Text.Equals("") && !txtPrecio.Text.Equals("") && !txtBC.Text.Equals("")) { String id = dataGridView1.CurrentRow.Cells[0].Value.ToString(); if (SQLCONN.delprod(id)) { MessageBox.Show("Producto eliminado"); dataGridView1.DataSource = SQLCONN.getprod(); } } else { MessageBox.Show("Seleccione un producto"); } }
public Almacen() { InitializeComponent(); dataGridView1.DataSource = SQLCONN.getprod(); habi(false); }