private void btn_Siguiente_Click(object sender, EventArgs e) { try { if (this.cmb_Etapa.SelectedIndex == -1) { MessageBox.Show("Seleccione una etapa para realizar la respectivo proceso del registro", "SISTEMA", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); } else { get_Etapa(); bus_Etapas = new prd_EtapaProduccion_Bus(); switch (Accion) { default: FrmPrd_EtapaMantenimiento frm = new FrmPrd_EtapaMantenimiento(); frm.Set_Accion(Core.Erp.Info.General.Cl_Enumeradores.eTipo_action.actualizar); frm.info.IdEtapa = Convert.ToInt32(this.cmb_Etapa.SelectedValue); frm.IdProcesoProductivo = IdProcesoProductivo; frm.Show(); this.Close(); break; } } } catch (Exception ex) { Log_Error_bus.Log_Error(ex.ToString()); } }
private void btn_Nuevo_Click(object sender, EventArgs e) { try { fr = new FrmPrd_EtapaMantenimiento(); fr.Set_Accion(Cl_Enumeradores.eTipo_action.grabar); fr.IdProcesoProductivo = Convert.ToInt32(this.txt_id.Text); fr.listaEtapas = List; fr.Show(); fr.event_FrmPrd_EtapaMantenimiento_FormClosing += fr_event_FrmPrd_EtapaMantenimiento_FormClosing; } catch (Exception ex) { Log_Error_bus.Log_Error(ex.ToString()); } }