Marcelo Manoel da Silva's post in sessões do ini não sao encontradas was marked as the answer
27 Setembro, 2022
eu mudei disso:
txtClientID.Text = boleto.ConfigLerValor(SESSAO_BOLETOCEDENTEWS, "ClientID")
txtClientSecret.Text = boleto.ConfigLerValor(SESSAO_BOLETOCEDENTEWS, "ClientSecret")
txtKeyUser.Text = boleto.ConfigLerValor(SESSAO_BOLETOCEDENTEWS, "KeyUser")
txtScope.Text = boleto.ConfigLerValor(SESSAO_BOLETOCEDENTEWS, "Scope")
chkIndicadorPix.Value = CLng(boleto.ConfigLerValor(SESSAO_BOLETOCEDENTEWS, "IndicadorPix"))
chkGravarLog.Value = CLng(boleto.ConfigLerValor(SESSAO_BOLETOWEBSERVICE, "LogRegistro"))
txtPathLog.Text = boleto.ConfigLerValor(SESSAO_BOLETOWEBSERVICE, "PathGravarRegistro")
para isso:
470 txtClientID.Text = boleto.ConfigLerValor("BoletoCedenteWS", "ClientID")
480 txtClientSecret.Text = boleto.ConfigLerValor("BoletoCedenteWS", "ClientSecret")
490 txtKeyUser.Text = boleto.ConfigLerValor("BoletoCedenteWS", "KeyUser")
500 txtScope.Text = boleto.ConfigLerValor("BoletoCedenteWS", "Scope")
510 chkIndicadorPix.Value = CLng(boleto.ConfigLerValor("BoletoCedenteWS", "IndicadorPix"))
520 chkGravarLog.Value = Int(boleto.ConfigLerValor("BoletoWebSevice", "LogRegistro"))
530 txtPathLog.Text = boleto.ConfigLerValor("BoletoWebSevice", "PathGravarRegistro")
e funcionou...