Jump to content

Leaderboard


Popular Content

Showing content with the highest reputation on 11/02/23 in all areas

  1. There have been a large number of new features and enhancements implemented in the P4D library recently . This discussion document provides an overview of these developments.
  2. David Heffernan

    constant records

    https://docwiki.embarcadero.com/RADStudio/Alexandria/en/Declared_Constants It's all in here
  3. Achim Kalwa

    StringGrid: how to get the column number via right-click

    Hi, Use the Grid's OnMouseUp event: procedure TForm4.gridMouseUp(Sender: TObject; Button: TMouseButton; Shift: TShiftState; X, Y: Integer); var ACol, ARow: Integer; begin if Button = TMouseButton.mbRight then begin grid.MouseToCell(X, Y, ACol, ARow); ShowMessage('Col: ' + ACol.ToString); end; end; HTH
  4. good afternoon, I have updated the memory allocator in the RTL subset on my site, here is the link with the library Delphi64RTL in case of any problems please notify me thank you Roberto Della Pasqua www.dellapasqua.com btw. https://www.intel.com/content/www/us/en/developer/tools/oneapi/onetbb.html https://www.intel.com/content/www/us/en/developer/videos/turbocharge-your-cpp-code-memory-allocation.html
  5. If you use a suitable column type alias in your SQLite table definition, FireDAC will figure out the correct field data type to use. DATE | SMALLDATE dtDate DATETIME | SMALLDATETIME dtDateTime TIMESTAMP dtDateTimeStamp TIME dtTime https://docwiki.embarcadero.com/RADStudio/Alexandria/en/SQLite_support_in_RAD_Studio
  6. DelphiUdIT

    Intel Simd-sort library

    Quite interesting, but I think it's not complete. Support to AVX2 should be full available. Intel new processors (12th, 13th and 14th gen.) don't support AVX512 (not even in the future, it seems). In the professional line of Intel (like some Xeon family) only a subset of AVX512 instructions are supported. The AVX2 instructions are more widely supported. Bye
  7. DelphiUdIT

    Library for modifying windows PE files?

    This is part of project "Cmulator" made in Pascal. This is the license: https://github.com/Coldzer0/Cmulator/blob/master/LICENSE
  8. Perhaps the FPU/x87 is not well supported within the emulator. IIRC the 32-bit Delphi RTL uses the FPU to make double-to-string conversion, using BCD conversions https://www.felixcloutier.com/x86/fbstp
  9. I've seen other reports similar to this. It smells like an emulator bug.
  10. Dmitry Sh.

    FMX custom control development

    Some interesting articles by Yaroslav Brovin (the author of FGX Native and former FMX developer). http://yaroslavbrovin.ru/new-approach-of-development-of-firemonkey-control-control-model-presentation-part-1-ru/
×