Jump to content

Leaderboard


Popular Content

Showing content with the highest reputation on 07/25/24 in all areas

  1. alejandro.sawers

    Android upcoming 16 KB page sizes support

    Well, no existing reports found so I created a ticket. Lets see what happens now.
  2. Remy Lebeau

    Avoid parameter evaluation

    Since performance is in question, I would suggest taking this approach a step further and use 'array of const' instead of 'array of string'. That way, you can pass in integers and other fundamental types as-is and not invoke the overhead of converting them to strings unless you are sure you actually need to, eg: procedure Log(LogLevel: TLogLevel; const Args: array of const); overload; begin if CanLog(LogLevel) then begin // convert Args to a log message and write it out as needed... end; end; Log(llTrace, ['Test', GetLastError(), ...]);
  3. Lajos Juhász

    Delphi 12: MessageDlg doesn't show icons

    Create a new VCL application. Double click on the form to create the formcreate method and add the line to change the icon for mtInformation: procedure TForm1.FormCreate(Sender: TObject); begin MsgDlgIcons[TMsgDlgType.mtInformation]:=TMsgDlgIcon.mdiInformation; end; After the {$R *.dfm} line add: uses System.UITypes; Add a button to the form and create an onlick event: procedure TForm1.Button1Click(Sender: TObject); begin MessageDlg('test', TMsgDlgType.mtInformation, mbYesNo, 0) end;
  4. Vandrovnik

    Android upcoming 16 KB page sizes support

    I tried to "vote" by adding a comment. And created a request for adding a "vote" button 🙂 https://embt.atlassian.net/servicedesk/customer/portal/1/RSS-1439
  5. Dave Nottage

    Delphi 11.3 issue with iOS Today Extension widgets

    Anyone who is interested in the work in progress (which is being tested now) should message me privately.
  6. Sherlock

    Loading and Saving PNG into TBitmap changes the image

    Slightly off topic: Reading this site with the standard light layout I thought the images where all broken...until I saw the webp and realized all images are white on transparent background. Silly me
  7. Thanks to Ethea S.r.l. who commissioned Luca Minuti to write a Delphi implementation of SAML protocols/libraries and make it available Open-Source to the entire Delphi community. The project has now been completed also for the 64-bit platform as well. The project is available on Git-Hub at this address: https://github.com/EtheaDev/Delphi-SAML
  8. Stefan Glienke

    Delphi 12 is available

    Check your facts, please https://learn.microsoft.com/en-us/deployedge/microsoft-edge-supported-operating-systems#supported-operating-systems-for-microsoft-edge Fun fact: that already is the case (it even only runs on Windows 11 21H2 or later) - see https://apps.microsoft.com/detail/9MSMLRH6LZF3
  9. Stefan Glienke

    Delphi 12 is available

    Get real - extended support for both ended four years ago. The market share of Windows 7 is at around 3% If you want to support ancient operating systems then use ancient Delphi versions. According to you Visual Studio 2022 (Supported Operating Systems) would be just dead
  10. Attila Kovacs

    Delphi 12 is available

    rotfl, so much about multiline strings i'm begging since ages for a directive excluding blocks from the formatter..... @Marco Cantu it would give you a break too
×