private void BtSiguiente_Click(object sender, EventArgs e) { //Redirige al usuario a la seleccion de beneficios para el canje de puntos frm_SelectBenefit siguiente = new frm_SelectBenefit(); siguiente.ShowDialog(); }
private void BtSiguiente_Click(object sender, EventArgs e) { Form siguiente = new frm_SelectBenefit(); siguiente.ShowDialog(); //Aca guardo el registro }
private void BtAceptar_Click(object sender, EventArgs e) { frm_SelectBenefit siguiente = new frm_SelectBenefit(); siguiente.ShowDialog(); }