HydroByte Software Repo
HydroByte Software Repo
Hi, I think you are using a newer version of Delphi, so this might be expected as `string` maps to `UnicodeString`. Into your code, try to use `AnsiString` type instead...
Try change `lContent` type: ````pascal procedure TForm1.btn1Click(Sender: TObject); var jSon: TMcJsonItem; lContent: AnsiString; begin jSon := TMcJsonItem.Create(); lContent := '{"key1":1,"key2":true,"key3":1.234,"key4":"value 1","array":[1,2,3]}'; jSon.AsJSON := lContent; try MMO1.Text := jSon.ToString(True); finally jSon.Free;...
I'll study how to solve this `W1050 WideChar reduced to byte char in set expressions. Consider using 'CharInSet' function in 'SysUtils' unit.` thing. I think I must use `AnsiString` instead...
Hi, Thanks for your reply. I think you mentioned the documentation and videos (in Portuguese) are focused on developers using Boss to **get** libraries and components. On the other hand,...
Olá. Vou explicar o meu foco no Inglês, mas é com bastante respeito ao trabalho de vocês. Acho que você deve ter visto o [vídeo](https://www.youtube.com/watch?v=Hv4jKYazMmk) do Jim McKeeth sobre o...
Sim, documentação é sempre um ponto crítico. Para mim, o Boss e o Horse são exemplos de quão forte o Delphi pode ser frente a tantas alternativas que ainda surgem,...
Nem sempre "some" é a consequência mais simples de se apontar. No meu caso, estou com dificuldades de fazer o Boss funcionar do ponto de vista do desenvolvedor.
Hi, Fixed in last commit. Sorry for the delay.