C++

Visualize JSON using TTreeView

Author: h.mohri I tried a program that reads a JSON file in C++Builder VCL and displays it in TTreeView component. This project file is open to public from github. github.com/mojeld https://www.microsoft.com/store/productid/9PLPHK05PJF7 Place two…
Delphi

Try Delphi on Amazon Linux.

Author: h.mohri I tried Delphi on Amazon Linux. Amazon Linux is Linux that exists only in the instance of EC2(AWS). “Free tier eligible” can be used. [Create an instance.] Select Amazon Linux from EC 2 and create a new instance. It is possible to connect with SSH in the initial state. [Environment…
Read more
C++

10.2 Tokyo TJsonSerializer and JSON.Converters

Author: h.mohri First declare with Pascal to use the converter and generics. //// unit Unit2; interface uses System.JSON.Converters, System.JSON.Serializers, System.Generics.Collections; type TListString = TList<String>; TDictionaryStrStr = class(TDictionary<String, String>) constructor Create; overload; end; TTJsonListConverterString =…
Read more
Delphi

Using Delphi, from Excel to JSON, then FireDAC[JAPAN]

Author: John D7279 //// class function ExcelToJson(cells: TRect; excel_filename, sheet_name: String):TJSONObject; It is a code for excel to JSON. //// class function TExcelToFireDAC.ExcelToJson(cells: TRect; excel_filename, sheet_name: String): TJSONObject; const def_excel_application = 'Excel.Application'; var jres: TJSONObject; jline: TJSONObject; ExcelApp…
Read more