Jump to content

Leaderboard


Popular Content

Showing content with the highest reputation on 07/30/20 in all areas

  1. The complete VCL package includes more than 750 VCL components including popular packages like LMD DockingPack, GridPack or LMD DialogPack (available for Delphi/C++Builder 6 and better, including 10.4 Sydney support). Read the news announcement or find summary of all changes in LMD 2020 release on What's New Page. Check the new trials and compiled Exe-Demos athttps://www.lmd.de/downloads Alle exe-demos were recompiled and digitally signed, for example the LMD DockingPack demo: https://files.lmd.de/downloads/lmd2020vcl/DockingPack_Demo.zip Feature Matrix of all LMD VCL products:https://www.lmd.de/feature-matrixIf you are interested in purchasing check out the order Page:http://www.lmd.de/shopping  If any questions are left, please contact us at mail@lmdsupport.com!
  2. David Heffernan

    Missing compiler warning

    You don't get this because the return type is a managed type and so is actually passed as an extra var parameter. So the variable is assumed to have been default initialised outside the function. I'm not trying to defend the compiler design here. The handling of function return variables is a complete mess in my view. They should be passed by value from callee to caller. The whole hidden var param is a weird hack from the ancient past that should never have been done.
  3. Pascal bindings for PrimeSieve library - https://github.com/JulStrat/primesieve-pas. Examples provided. Tested with Rio 10.3 CE. it's my first code for Delphi. Suggestions and critics are welcome ...
  4. Carlo Barazzetta

    Native Svg parsing and painting in Windows

    Vincent, I can't process your pull request for a few days because I'm busy, but your job is very important to give flexibility to these components. Thanks for your support to the SVGIconImageList project.
  5. Vincent Parrett

    Native Svg parsing and painting in Windows

    https://github.com/EtheaDev/SVGIconImageList By the same author. I'm working on a pull request to add a virtualimagelist and imagecollection using the same svg code.
  6. In case you didn't know - https://github.com/EtheaDev/IconFontsImageList can scale the icons to any size losslessly, but it depends on icon fonts such as Material Icons.
  7. Arnaud Bouchez

    Missing compiler warning

    Indeed. I would have written an "out" parameter in the docs, at least. The function should set or initialize the value. And the compiler should emit a warning in your case. FPC is much more paranoid about such warnings, but at least it tries to warn anything dubious, and allow to disable false positives with the {$H-} trick on the faulty line.
  8. Vincent Parrett

    Repository reorganisation

    Just a heads up for those that use the github repo rather than the embarcadero bundled version - I have re-organised the repo and moved the source into a Source folder, so you next time you pull you will need to adjust your library/search paths. Apologies for the pain this might cause but it needed to be done, the repo was a bit of a mess. Same applies to the DelphiMocks repo.
  9. Dave Nottage

    Audio recording rises access violation on IOS 13.5.1

    Is there a value for NSMicrophoneUsageDescription in the Project Options, like this? If not, you'll need to add it, by right-clicking on the grid, click Add Key, enter NSMicrophoneUsageDescription as the name, click OK, then provide a value for it.
  10. Fr0sT.Brutal

    Running Tokyo 10.2.3 dcc32 from the command line

    rsvars.bat && msbuild.exe /t:build /nologo %ProjFile% beat it with call to dcc32 😜
  11. Rüdiger Paschotta

    Remote control of Word no longer working

    I finally found the solution for the problem with "interface not supported" when trying to remote-control Word: I had compiled my program for the 32-bit Windows platform, while Office 365 is a 64-bit version. Going back to a 64-bit version, everything worked again! When previously changing the platform, I could not anticipate that side effect. That nasty problem has taken hours to be resolved. I first tried to find some library for directly manipulating Word files, but could not find anything which looked reasonable. It would not only have to work theoretically, but be documented such that one can use it without wasting a lot of time. Here, many packages fail. I also previously tried a "repair" of my Office installation, which did not solve the problem but apparently uninstalled Microsoft Teams.
×