private void btnGuardar_Click(object sender, EventArgs e) { try { string resp = ""; if (txtDesc_especialidad.Text == string.Empty) { MensajeError("Falta ingresar algunos datos, seran remarcados"); errorIcono.SetError(txtDesc_especialidad, "Ingrese un valor"); } else { if (this.Isnuevo) { resp = EspecialidadLogic.Insertar(txtDesc_especialidad.Text.Trim().ToUpper()); } else { resp = EspecialidadLogic.Editar(Convert.ToInt32(txtid_especialidad.Text), this.txtDesc_especialidad.Text.Trim().ToUpper()); } if (resp.Equals("OK")) { if (this.Isnuevo) { this.MensajeOk("Se Inserto de forma correcto el registro"); } else { this.MensajeOk("Se Actualizo de forma correcto el registro"); } } else { this.MensajeError(resp); } this.Isnuevo = false; this.IsEditar = false; this.Botones(); this.Limpiar(); this.Listar(); //DataGridTextBoxColumn row = dataListado.Columns[2]; //r = 80; } } catch (Exception) { throw; } }