private void BtnNuevo_Click(object sender, EventArgs e) { TxtEditar.Text = "Nuevo"; Limpiar(); TxtCod_segmento.Focus(); Botones(); }
public void Listar() { try { Ds = ESegmento.Listar(TxtTiposeg); TxtCod_segmento.Text = Ds.Tables[0].Rows[0]["cod_segmento"].ToString(); TxtCod_segmentov.Text = Ds.Tables[0].Rows[0]["cod_segmento"].ToString(); TxtDesc_segmento.Text = Ds.Tables[0].Rows[0]["desc_segmento"].ToString(); TxtTiposeg = Ds.Tables[0].Rows[0]["tiposeg"].ToString(); TxtCampo1.Text = Ds.Tables[0].Rows[0]["campo1"].ToString(); TxtCampo2.Text = Ds.Tables[0].Rows[0]["campo2"].ToString(); TxtCampo3.Text = Ds.Tables[0].Rows[0]["campo3"].ToString(); TxtCampo4.Text = Ds.Tables[0].Rows[0]["campo4"].ToString(); TxtCampo5.Text = Ds.Tables[0].Rows[0]["campo5"].ToString(); TxtCampo6.Text = Ds.Tables[0].Rows[0]["campo6"].ToString(); TxtEditar.Text = "Listar"; Registros(); } catch (Exception Ex) { TxtEditar.Text = "Nuevo"; Limpiar(); TxtCod_segmento.Focus(); string rpta = Ex.Message; MensajeOk("Tabla Vacia, esta en modo Ingreso"); Show(); } }
private void GenerarCod() { try { int rpta = Convert.ToInt32(ESegmento.GenerarCod(TxtCod_segmento.Text, TxtTiposeg)); TxtCod_segmento.Text = Pref + rpta.ToString(TxtCadena.Text); } catch (Exception Ex) { MensajeError(" Solo se puede Generar Codigos Numericos " + Ex.StackTrace); TxtCod_segmento.Focus(); } }