Jump to content

Leaderboard


Popular Content

Showing content with the highest reputation on 12/27/22 in all areas

  1. vfbb

    No support for RTL languages in TListView ?

    Not! This part is exemplifying the direct use of the API. It's exactly like @Sherlock said, just replace the default FMX renderer with Skia's renderer ("GlobalUseSkia := True;" in your dpr). But there are a few more notes in the RightToLeft section in readme, which I've printed here:
  2. Sherlock

    No support for RTL languages in TListView ?

    No, it means you can install Skia4Delphi and use it in your project, and after following the steps pointed out to you, you can use "right to left" as originally expected.
  3. programmerdelphi2k

    iOS Launch Image 2x, 3x?

    here a online generator fo iOS screens https://hotpot.ai/blog/ios-1x-2x-3x-generator
  4. programmerdelphi2k

    iOS Launch Image 2x, 3x?

    https://stackoverflow.com/questions/30049544/what-should-image-sizes-be-at-1x-2x-and-3x-in-xcode https://www.appypie.com/image-scaling-ios-how-to
  5. William23668

    No support for RTL languages in TListView ?

    This indeed solved the problem in very easy way thanks alot 😍 💐
  6. Angus Robertson

    How to connect to wss:// server ?

    The new ICS websocket client is done, just updating the REST sample with a websocket tab, day or two. Angus
  7. fe-hre

    New Installation of Rad Studio 10.2 (Tokyo)

    Problem solved. The project itself was also corrupted. I have taken a previous version and all was ok. Thanks all for your inputs
  8. sail2000

    how can i handle the javascript result?

    code is perfect. Thank you so much!
  9. vfbb

    No support for RTL languages in TListView ?

    FMX does not natively support RTL. However, it is possible to use third-party libraries that enable RTL in FMX. Skia4Delphi is one of them: https://github.com/skia4delphi/skia4delphi#right-to-left
  10. From what I've read about ASLR, addresses could be any even without additional options. And even without ASLR you can achieve 64-bit pointers by occupying all 4 Gb RAM (swap file should be disabled). Btw this is pretty good test for valid pointer operations, especially estimating huge heap of legacy 32-bit code with quite desperate pointer<=>number manipulations that was converted to 64-bit but probably never thoroughly tested
  11. eivindbakkestuen

    Nasty Parallel Programming Library bug - please vote

    Our customers can reproduce, although intermittently. 😉 The issue has been updated with proposed PPL source changes for review.
  12. This has been my guideline all the time when talking about delphi code. and it has saved me couple of times. But sometimes must relay on ready solutions but use those who have large user base. One just don't have enough time to write everything by himself ( = myself + my team) My point was not: "Do not use code from other". But it was: "Use code from other only if you get full source code and can recompile EVERYTHING". There are a lot of high quality freeware and commercial products delivering their full source code. Stick with those products and you'll never depend on the people or companies behind them. I use Delphi since version 1 and that has always been by guideline. Working as independent consultant, I saved many companies being stuck with old Delphi version because of the product they depends on and having been stopped. I'm myself author of Internet Component Suite (ICS) which I developed and made freeware with full source code since 1996. A lot of people participated to the development and even after the last 26 years are still developing it actively.
  13. Fr0sT.Brutal

    How to connect to wss:// server ?

    The whole idea of websockets is to have permanent connection so it should use TCP.
  14. Uwe Raabe

    Tool to fix up uses clause unit namespaces?

    I have written a tool including that functionality some time ago. Although I didn't find the time to polish it up before going public, it basically does what it is supposed to. Expanding unit scope names is only part of the whole process, which consists of resolve all unit aliases expand unit scope names group units compress uses clause Taking your example above it will convert uses sysutils, stdctrls; into uses System.SysUtils, Vcl.StdCtrls; Feel free to adjust the sources to your needs. UsesCleanerSource.zip
×