Jump to content

Anders Melander

Members
  • Content Count

    2771
  • Joined

  • Last visited

  • Days Won

    147

Everything posted by Anders Melander

  1. Anders Melander

    EULA declined installing 11.1 with Network Named license

    Hey, that's cheating 🙂
  2. Anders Melander

    Digital Persona UAreU 4500 Fingerprint Reader ActiveX

    Google "OposBiometric activex", 3rd result: http://carol.havocshack.com/carol-winslow-tech-writer/files/one-touch-for-windows-sdk-com-activex-developer-guide.pdf
  3. Anders Melander

    FYI: Old security BUG fixed from ZLib

    From: https://www.openwall.com/lists/oss-security/2022/03/28/1 via https://github.com/madler/zlib/issues/605#issuecomment-1084218467 The following are the only (two) calls to DeflateInit2 in the Delphi source (System.ZLib.pas): procedure ZCompress2(const inBuffer: TBytes; out outBuffer: TBytes); ... begin ... ZCompressCheck(DeflateInit2(zstream, 1, 8, -15, 9, 0)); ... constructor TZCompressionStream.Create(dest: TStream; compressionLevel: TZCompressionLevel; windowBits: Integer); begin ... ZCompressCheck(DeflateInit2(FZStream, ZLevels[compressionLevel], Z_DEFLATED, windowBits, 8, Z_DEFAULT_STRATEGY)); end; Note that one uses MemLevel=9 and the other MemLevel=8. None uses the Z_FIXED method the original bug was about.
  4. Anders Melander

    FYI: Old security BUG fixed from ZLib

    As far as I've been able to evaluate this bug isn't much of a problem for Delphi desktop applications. Server applications could have a problem if they do compression of user supplied data (the bug only exists in the zlib compressor) but since it's only a buffer overrun (as far as I can tell) it's not that bad.
  5. Anders Melander

    EULA declined installing 11.1 with Network Named license

    Okay then. I thought that maybe you were just voicing an uninformed opinion. My bad.
  6. Anders Melander

    EULA declined installing 11.1 with Network Named license

    That would mean Windows 8.x isn't supported either: https://sockettools.com/kb/windows-and-supported-tls-versions/
  7. Anders Melander

    EULA declined installing 11.1 with Network Named license

    Are there any particular security update, unavailable for Windows 7, that you can't do without?
  8. Anders Melander

    Delphi 11.1 Provisioning Access Violation

    Looks like a corrupt installation to me, but it's hard to conclude anything from the info available.
  9. Anders Melander

    KILLER PROJECT - RESUSCITATE MWA DB JPEG COMPONENT LIBRARY

    Calm down, dude.
  10. And then there's this one about "Code Profiling, Optimization, Performance, and Memory Leaks" (in which the audio worked but the video didn't, so it's two hours of power point) which manages to completely avoid the topic of profiling...
  11. Anders Melander

    dlsym and symbols

    Ah, I didn't realize who you represented. I'll let you figure it out for yourself then 🙂
  12. Anders Melander

    dlsym and symbols

    Are you patching the compiled binaries or are you generating resource modules for use with the RTL's built-in localization system?
  13. Anders Melander

    SpaceBallz

    John weeps 😢
  14. Anders Melander

    TImage (JPG) not scaling, but PNG and BMP DO ???

    That shouldn't matter. Regardless of the dimensions of the jpeg image, it (or rather the internal TBitmap representing the decoded image) will be stretched to fit the target rect. procedure TJPEGImage.Draw(ACanvas: TCanvas; const Rect: TRect); begin ACanvas.StretchDraw(Rect, Bitmap); end;
  15. Anders Melander

    TImage (JPG) not scaling, but PNG and BMP DO ???

    Weird indeed. Can you tell if it's the TImage itself or only the content which isn't being scaled?
  16. Anders Melander

    TImage (JPG) not scaling, but PNG and BMP DO ???

    That's pretty useless - "OT" or not. He's using a TImage.
  17. Anders Melander

    Command-line build slower than IDE build

    I'm guessing the IDE build is using an internal unit cache when it's building. Try comparing an external build through msbuild with an IDE build where the project is configured to use msbuild (Project->Options->Building->Delphi Compiler->Use MSbuild...)
  18. Anders Melander

    Delphi 11.1 IDE - Control + Click doesn't open FireDAC units

    Doesn't the trial come with full source... Asking for a friend 🙂
  19. Anders Melander

    Delphi 11.1 IDE - Control + Click doesn't open FireDAC units

    Okay, if that doesn't resolve the problem I suggest you try using SysInternal's ProcMon to determine what's going on. Filter on bds.exe and enable the trace just before you do a [Ctrl]+[Enter].
  20. Anders Melander

    Delphi 11.1 IDE - Control + Click doesn't open FireDAC units

    Check if $(BDS)\source\data\firedac is in your browsing path: Tools->Options->Language->Delphi->Library->Browsing path. Does the folder exist on disk? If you [Ctrl]+[Enter] on a FireDAC unit in the uses, does that open the file?
  21. Anders Melander

    Delphi 11.1 is available

    I meant from their perspective.
  22. Anders Melander

    Delphi 11.1 is available

    I don't think it was the environment that turned the forums poisonous. I think it was the almost complete refusal to acknowledge the many problems which alienated a lot of former champions of Delphi (myself included) and made them feel betrayed. Disgruntled fans are often very vocal in their criticism. Anyway, water under the bridge.
  23. Anders Melander

    Delphi 11.1 is available

    I remember that incident. Classic Nick.
  24. Anders Melander

    Delphi 11.1 is available

    So, "paid" shills. My bad for thinking it was something else. I guess I could have just googled it: https://www.embarcadero.com/embarcadero-mvp-program https://community.embarcadero.com/blogs/entry/are-you-asking-about-mvp-1407 LOL
  25. Anders Melander

    Delphi 11.1 is available

    Such as?
×