Assapan

No Rank
Points: 0
Andrew wrote: People in this thread are referring to "Platforms and Extensions manager", "Platform Assistant", as well as a menu item Tools->Platforms.
Of these three described items, my fully registered installation of C++Builder 20.3 Professional has NONE of them. Where do people see these options, please?
(Also, and this may be related, each time I try to load the GetIt manager, it displays an exception 0xC0000005 followed by four 64 bit numbers, and the entire IDE crashes...)
Read More...
I found the problem in REST.JsonReflect at line 1691
if (rttiType.Name = 'TListHelper') and
(Length(rttiType.GetFields) > 1) and
(rttiType.GetFields[0].Name = 'FCount') then
Tokyo report rttiType.GetFields[0].Name = 'FCount' where Rio report = 'FItems'
Read More...
it GetIT a lot of the options are missing like Codesite , Jdi library ...
Why on every new release we have to wait several days or weeks to have at least what was existing in previous version ? Isn't it possible to have a full release in once ? call this a pre-release ?
Read More...
It seems that something went wrong with JSON and generic Tobjectlist.
In Tokyo the following code works perfectly
TParametre = class
private
FValeur: string;
Fnom: String;
procedure Setnom(const Value: String);
procedure SetValeur(const Value: string);
public
property nom: String read Fnom write Setnom;
property Valeur: string read FValeur write SetValeur;
end;
TListeParametres = class(TObjectList<TParametre>);
var
Form17: TForm17;
implementation
{$R *.dfm}
procedure TForm17.Button1Click(Sender: TObject);
var
Liste: TListeParametres;
P: TParametre;
i: Integer;
begin
Liste := TListeParametres.Create;
for i := 1 to 10 do
begin
P := TParametre.Create;
P.nom := Format('Param%d', [i]);
P.Valeur := i.ToString;
Liste.Add(P)
end;
Memo1.Lines.Add(TJSon.ObjectToJsonString(Liste));
end;
Rio reports an error at execution ( translated from french ) "EConversionError type tkpointer is no actualy supported"
Read More...
In Tools , Platforms they are not listed ?
Read More...
INI is not related to object , JSON is .
You just have to define a persistence object and use object to json to write and json to object to read .
Read More...

































