private void BtnNuevo_Click(object sender, EventArgs e) { TxtEditar.Text = "Nuevo"; Limpiar(); TxtCod_sublinea.Focus(); Botones(); }
public void Listar() { try { Ds = ESubLinea.Listar(); TxtCod_sublinea.Text = Ds.Tables[0].Rows[0]["cod_sublinea"].ToString(); TxtCod_sublineav.Text = Ds.Tables[0].Rows[0]["cod_sublinea"].ToString(); TxtDesc_sublinea.Text = Ds.Tables[0].Rows[0]["desc_sublinea"].ToString(); TxtCod_linea.Text = Ds.Tables[0].Rows[0]["cod_linea"].ToString(); TxtDesc_linea.Text = Ds.Tables[0].Rows[0]["desc_linea"].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_sublinea.Focus(); string rpta = Ex.Message; MensajeOk("Tabla Vacia, esta en modo Ingreso"); Show(); } }
private void GenerarCod() { try { int rpta = Convert.ToInt32(ESubLinea.GenerarCod(TxtCod_sublinea.Text)); TxtCod_sublinea.Text = Pref + rpta.ToString(TxtCadena.Text); } catch (Exception Ex) { MensajeError(" Solo se puede Generar Codigos Numericos " + Ex.StackTrace); TxtCod_sublinea.Focus(); } }