void Button2Click(object sender, EventArgs e) { if (this.textBox2.Text.Trim() == "" || this.textBox3.Text.Trim() == "") { System.Windows.Forms.DialogResult advertencia = MessageBox.Show( "Debes ingresar los nuevos datos"); } else { funciones funci = new funciones(); funci.editarbebida(this.seleccionado, this.textBox2.Text.Trim(), this.textBox3.Text.Trim()); System.Windows.Forms.DialogResult result = MessageBox.Show( "Se edito correctamente ¿Desea editar otra bebida?", "editar bebida", MessageBoxButtons.YesNo, MessageBoxIcon.Question, MessageBoxDefaultButton.Button1 ); if (result != System.Windows.Forms.DialogResult.Yes) { this.Close(); this.bebs.actualizarTabla(); } else { this.bebs.actualizarTabla(); this.textBox2.Clear(); this.textBox3.Clear(); } } }
void Button2Click(object sender, EventArgs e) { if(this.textBox1.Text.Trim()==""){ System.Windows.Forms.DialogResult advertencia = MessageBox.Show( "Debes ingresar el ID a eliminar"); }else{ System.Windows.Forms.DialogResult result = MessageBox.Show( "Enserio deseas eliminar?", "Eliminar bebida", MessageBoxButtons.YesNo, MessageBoxIcon.Question, MessageBoxDefaultButton.Button1); if(result != System.Windows.Forms.DialogResult.Yes){ this.Close(); this.bebs.actualizarTabla(); } else{ funciones funci = new funciones(); funci.eliminarbebida(this.textBox1.Text.Trim()); this.bebs.actualizarTabla(); this.Close(); } } }
void Button2Click(object sender, EventArgs e) { if(this.textBox2.Text.Trim()=="" && this.textBox3.Text.Trim()==""){ System.Windows.Forms.DialogResult advertencia = MessageBox.Show( "Los campos no pueden ir vacios" ); }else{ funciones funci = new funciones(); funci.agregarbebida(this.textBox2.Text.Trim(),this.textBox3.Text.Trim()); System.Windows.Forms.DialogResult result = MessageBox.Show( "Se agrego correctamente ¿Desea agregar otra bebida?", "agregar bebida", MessageBoxButtons.YesNo, MessageBoxIcon.Question, MessageBoxDefaultButton.Button1 ); if(result != System.Windows.Forms.DialogResult.Yes){ this.Close(); this.bebs.actualizarTabla(); }else{ this.bebs.actualizarTabla(); this.textBox2.Clear(); this.textBox3.Clear(); } } }
void Button2Click(object sender, EventArgs e) { if (this.textBox2.Text.Trim() == "" && this.textBox3.Text.Trim() == "") { System.Windows.Forms.DialogResult advertencia = MessageBox.Show( "Los campos no pueden ir vacios" ); } else { funciones funci = new funciones(); funci.agregarbebida(this.textBox2.Text.Trim(), this.textBox3.Text.Trim()); System.Windows.Forms.DialogResult result = MessageBox.Show( "Se agrego correctamente ¿Desea agregar otra bebida?", "agregar bebida", MessageBoxButtons.YesNo, MessageBoxIcon.Question, MessageBoxDefaultButton.Button1 ); if (result != System.Windows.Forms.DialogResult.Yes) { this.Close(); this.bebs.actualizarTabla(); } else { this.bebs.actualizarTabla(); this.textBox2.Clear(); this.textBox3.Clear(); } } }
void Button2Click(object sender, EventArgs e) { if (this.textBox1.Text.Trim() == "") { System.Windows.Forms.DialogResult advertencia = MessageBox.Show( "Debes ingresar el ID a eliminar"); } else { System.Windows.Forms.DialogResult result = MessageBox.Show( "Enserio deseas eliminar?", "Eliminar bebida", MessageBoxButtons.YesNo, MessageBoxIcon.Question, MessageBoxDefaultButton.Button1); if (result != System.Windows.Forms.DialogResult.Yes) { this.Close(); this.bebs.actualizarTabla(); } else { funciones funci = new funciones(); funci.eliminarbebida(this.textBox1.Text.Trim()); this.bebs.actualizarTabla(); this.Close(); } } }
void Button2Click(object sender, EventArgs e) { if (this.textBox2.Text.Trim()=="" || this.textBox3.Text.Trim()==""){ System.Windows.Forms.DialogResult advertencia = MessageBox.Show( "Debes ingresar los nuevos datos"); }else{ funciones funci=new funciones(); funci.editarbebida(this.seleccionado,this.textBox2.Text.Trim(),this.textBox3.Text.Trim()); System.Windows.Forms.DialogResult result = MessageBox.Show( "Se edito correctamente ¿Desea editar otra bebida?", "editar bebida", MessageBoxButtons.YesNo, MessageBoxIcon.Question, MessageBoxDefaultButton.Button1 ); if(result != System.Windows.Forms.DialogResult.Yes){ this.Close(); this.bebs.actualizarTabla(); }else{ this.bebs.actualizarTabla(); this.textBox2.Clear(); this.textBox3.Clear(); } } }