Jump to content

Leaderboard


Popular Content

Showing content with the highest reputation on 10/21/19 in Posts

  1. Fr0sT.Brutal

    Uses Clause Manager in Tree in r2809

    @PeterPanettone man you really mixing forum and WhatsApp.
  2. Fr0sT.Brutal

    Any Stand-alone VCL Editors?

    Ehm... There's VclStyleDesigner.exe in RAD Studio distributive, isn't it what you're looking for?
  3. Dmitry Arefiev

    New to Json

    This may be coded in a more short form using 10.3.2. First case: var JsonValue: TJSONValue; Branch: string; begin JsonValue := TJSONObject.ParseJSONValue(st, False, True); try Branch := JsonValue.GetValue<string>('data.conditions[0].temp'); memo1.Lines.add('Parsed temperature '+branch); Branch := JsonValue.GetValue<string>('data.conditions[2].bar_sea_level'); memo1.Lines.add('Parsed barometer '+branch); finally JsonValue.Free; end; end; Second case: var JsonValue: TJSONValue; Branch: string; begin JsonValue := TJSONObject.ParseJSONValue(st, False, True); try Branch := JsonValue.GetValue<string>('iWN5p2qfRFeGKXn1m3iGnDW0Vkl2.PROFILE.BIRTHDAY'); memo1.Lines.Add('Parsed BIRTHDAY ' + Branch); Branch := JsonValue.GetValue<string>('iWN5p2qfRFeGKXn1m3iGnDW0Vkl2.PROFILE.FULL NAME'); memo1.Lines.Add('Parsed FULL NAME ' + Branch); finally JsonValue.Free; end; end; This is most simple code. Although not fastest, but may be enough fast. Depending on the requirements it may be optimized.
  4. braunbaer

    Application Loader no longer included in Xcode11

    Hi, There is a new App from Apple: Transporter https://apps.apple.com/at/app/transporter/id1450874784?mt=12 i have not testet it yet, but it looks good! Here is the post on the German delphipraxis: https://www.delphipraxis.net/202280-neuer-apple-application-loader.html Regards Gebhard
  5. David Schwartz

    Any update on the v10.3.3 release?

    I use a VM. Installing a new Delphi update is just as much of a PITA on a VM as on a host machine.
×