Re: [fpc-pascal] JSON Parser to tree view

2014-09-27 Thread wollepatong
Small enhancement for the jsonviewer: In mainform, OnShow change the code to: - procedure TMainForm.FormShow(Sender: TObject); begin if (Paramcount 0) then try OpenFile(ParamStr(1)); exit; except

[fpc-pascal] JSON Parser to tree view

2010-10-21 Thread ik
Hello, I wish to use the JSON parser to create some sort of TreeView of my JSON (it's more then 500 lines of data). Before I'll write such code, do you know of any existed code that does such thing, or at least most of the work ? Thanks, Ido LINESIP websites: http://www.linesip.com

Re: [fpc-pascal] JSON Parser to tree view

2010-10-21 Thread Luiz Americo Pereira Camara
ik escreveu: Hello, I wish to use the JSON parser to create some sort of TreeView of my JSON (it's more then 500 lines of data). Before I'll write such code, do you know of any existed code that does such thing, or at least most of the work ?