private void button1_Click(object sender, EventArgs e) { string campos = "member_Id ='" + this.comboBox2.Text + "', money ='" + this.txt_dinero.Text + "', notes ='" + this.richTextBox1.Text + "', date ='" + this.dateTimePicker1.Value + "'"; if (txt_dinero.Text == "") { MessageBox.Show("Monto de Dinero No Puede Ir en Blanco"); txt_dinero.Select(); txt_dinero.Focus(); } else { if (obcrud.actualizar("vs_offering", campos, "member_Id = '" + this.comboBox1.SelectedValue.ToString() + "'")) { MessageBox.Show("Se a Actualizado Correctamente"); ofrenda mb = new ofrenda(); mb.Show(); } else { MessageBox.Show("no se pudo actualizar"); } } }
private void button4_Click(object sender, EventArgs e) { ofrenda of = new ofrenda(); of.Show(); }
private void agregarOfrendaToolStripMenuItem_Click(object sender, EventArgs e) { ofrenda of = new ofrenda(); of.Show(); }