private void buttonConsultaC_Click(object sender, EventArgs e) { Connection.OpenConnection(); MySqlDataReader reader = Class_.Producto.BuscarProducto(Connection.myConnection, dataGridView1.CurrentRow.Cells[0].Value.ToString()); if (reader.Read()) { if (reader.GetBoolean(9)) { Class_.Producto nProducto = new Class_.Producto(reader.GetInt32(0), reader.GetString(1), reader.GetString(2), reader.GetString(3), reader.GetString(4), reader.GetString(5), reader.GetFloat(6), reader.GetInt32(7), reader.GetString(8), reader.GetBoolean(9)); Consulta_Producto consulta_producto = new Consulta_Producto(nProducto, Connection); Connection.CloseConnection(); consulta_producto.ShowDialog(); LoadData(); } else { MessageBox.Show("ID no existe"); } } else { MessageBox.Show("ID no existe"); } Connection.CloseConnection(); }
private void button1_Click(object sender, EventArgs e) { Connection.OpenConnection(); MySqlDataReader reader = Class_.Producto.BuscarProducto(Connection.myConnection, textBox1.Text); if (reader.Read()) { if (reader.GetBoolean(9)) { Class_.Producto nProducto = new Class_.Producto(reader.GetInt32(0), reader.GetString(1), reader.GetString(2), reader.GetString(3), reader.GetString(4), reader.GetString(5), reader.GetFloat(6), reader.GetInt32(7), reader.GetString(8), reader.GetBoolean(9)); Consulta_Producto consulta_producto = new Consulta_Producto(nProducto, Connection); Connection.CloseConnection(); this.Close(); consulta_producto.ShowDialog(); } else { MessageBox.Show("ID no existe"); } } else { MessageBox.Show("ID no existe"); } Connection.CloseConnection(); }