Jump to content

Leaderboard


Popular Content

Showing content with the highest reputation on 05/29/20 in all areas

  1. The new PngComponents version 1.6.0 with Delphi 10.4 Sydney support is available on GitHub: https://github.com/UweRaabe/PngComponents While the version delivered with GetIt is still on 1.4.0, the above version f.i. supports the new feature of linking to a TPngImageList by ImageName in addition to ImageIndex.
  2. Dalija Prasnikar

    Can Rio and Sydney co-exist?

    You missed it... look for Options button in the bottom panel (on the left of Next, Cancel... ) I am not sure whether it shows in first or second screen... but it is there.
  3. hardly - its approx 25% to 50% slower because it has to create and destroy an entire object with all bells and whistles. 🙂
  4. Just in case you missed: a new version of MARS-Curiosity REST library has been released yesterday. https://github.com/andrea-magni/MARS/releases/tag/v1.4 V.1.4 adds support for Delphi 10.4 Sydney as long as many other features and functionalities to the library. I will cover most important new features with some blog posts in the following weeks. Sincerely, Andrea
  5. 1. 2. 3. 4. There are at least 30 seconds between each step. But there is NO CodeInsight Code Completion in between. Shouldn't the Code Completion show the identifier "Now"? It seems that Error Insight in this case takes priority over Code Completion. But shouldn't it be vice versa? (-> Code Completion takes priority over Error Insight)
  6. I commented this in another thread, but it doesn't hurt to repeat it. When you find a problem with RAD Studio, make sure to create a report in https://quality.embarcadero.com And - please describe the problem properly! What you are trying to do The actual result you got The result you expected Most important: How to reproduce the problem - either as a detailed step by step description - or as a small, self-contained, compilable example project - or both of the above Better reports = better chance of getting stuff fixed.
  7. It is simpler, but not faster. FWIW, I am using the same simple implementation because I don't need that extra speed. Smart pointer already brings in some performance drop and in places where I can live with that I can also live with unoptimized version of smart pointer. But if you really want to use smart pointers and you really need every last CPU cycle you can squeeze out of it, then Spring4D is the way to go.
  8. Martin Wienold

    Is this deliberate?

    That looks like GNU Gettext to me,
  9. Uwe Raabe

    Your RAD Studio 10.4 Sydney issues

    There is an option (checkbox) that the theme follows the Windows theme. Try to switch that off.
  10. Stefan Glienke

    You RAD Studio 10.4 Sydney appreciated features and bug fixes

    @pyscripter Looks weird given how other managed types lifetimes are being handled - but since we don't have precise language and design specs as always we can just guess. Apart from that implementing smartpointer that way is wrong anyway because they break whenever there is an explicit or implicit assignment/copy going on. Proper smartpointer need a shared block that holds a reference counter. Shared<T> in Spring is implemented with several optimizations to avoid the overhead of object creation for this purpose using the all known "interface in record" approach and I challenge everyone to come up with a robust implementation using custom managed records to beat that.
  11. Ralf7

    Delphi 10.4 - Steps of Error Insight

    I didn't really expect this to work in 10.4 now.
  12. PeterPanettone

    Delphi 10.4 - Access Violation when opening License Manager

    My colleague has posted the ticket: https://quality.embarcadero.com/browse/RSP-29172
  13. Update 6 adds support for Delphi 10.4 Sidney. I have also added a demo package for Delphi 10.4 Downloads can be found here.
  14. Lars Fosdal

    Your RAD Studio 10.4 Sydney issues

    @vhanla - create your report in qualityportal. This not an Idera site, so just writing about it here will not be helpful.
  15. Martin Wienold

    Your RAD Studio 10.4 Sydney issues

    This thread should not be used to report your errors but only to post links to the Quality Portal for issues you want others to be aware of.
  16. Tom F

    Your RAD Studio 10.4 Sydney issues

    For years I used the ISO because I seemed to have problems with the web install. I know this release is supposed to unify the two installers and eliminate problems. However, I still used the ISO. And then I couldn't get GetIt to work to download CodeSite, etc. I asked about this at the GoToMeeting just now. I needed to RTFM. 🙂 Be sure to read the release notes (http://docwiki.embarcadero.com/RADStudio/Sydney/en/Release_Notes) which state:
  17. Alexander Sviridenkov

    ANN: HTML Library 4.2 with 10.4 support.

    HTML Library 4.2 released. Mostly an maintanence release with RAD studio 10.4 support and bugfixes. Customers will receive download link in a two days.
  18. Alexander Sviridenkov

    ANN HTML Library 4.1 released

    Thanks to all. Flex is planned to this year. CSS grids - after flex.
  19. MMX version 15.0.15 now supports Delphi 10.4 Sydney.
  20. For what it's worth: We hired a new Delphi developer about 4 years ago (because the one we hired 10 years ago left). And we are constantly creating new and improving old programs that are used internally, and some that are used in our parent company and sold to costumers who buy our custom built measurement vehicles or data. We recently started a new tool that required Delphi 10.2 features and even bought two new licenses for that. And I'm waiting for Delphi 10.4 in the hope that one particular bug in the IDE has been fixed that prevented another new tool to move forward. But we might be an exception, because I'm a fan of Delphi and I'm making most of the decisions regarding the development environment. Maybe my successor will decide to drop all that "legacy" stuff and start rewriting everything with "modern" technology. If he is lucky, the company might even survive such a move, barely, and with a software department of 10 instead of 3 people. But hey, that would create 7 new jobs.
  21. Attila Kovacs

    Differences in displaying the tab character

    you have to edit VTV sources and before every DrawText(W) do a DrawFormat := DrawFormat or DT_EXPANDTABS or DT_TABSTOPS; DrawFormat := DrawFormat or (FTabwidth shl 8); and you can create a property of FTabwidth, (plus one for Expandtabs yes/no).
  22. I have created GitHub repository with code examples from my book Delphi Memory Management for Classic and ARC Compilers. It is still work in progress (there is plenty of code) and currently, it contains examples from Part 1 and Part 5. The rest is coming... https://github.com/dalijap/code-delphi-mm
  23. Günther Schoch

    Experience/opinions on FastMM5

    Exactly what we expect. For single thread applications FastMM5 will have no big impact. FastMM4 was already highly optimized. It really starts to show the big differences with heavy multi-threading apps on machines with many CPUs as the memory manager does much less block or serializes the worker threads. E.g. using TParallel.For should already show that difference. But we will soon provide some samples to demonstrate the mentioned difference.
  24. David Heffernan

    Experience/opinions on FastMM5

    Don't use the hammer then. Make your own. Your choice.
  25. Too bad it will most likely rot in JIRA with the other 1900 open as "new feature" classified issues...
×