Jump to content

dwrbudr

Members
  • Content Count

    66
  • Joined

  • Last visited

Everything posted by dwrbudr

  1. dwrbudr

    Vcl.Themes different in debug vs release

    Check your project options for all kind of configurations, Debug, Release, etc.
  2. dwrbudr

    Delphi 12.2 Toolbars strange behavior

    Yes, EMB screwed up again. I have not found a way to fix that. To they test before release at all?! Sync prototypes still not working, lamers.
  3. dwrbudr

    FindFirst : with network files it fails

    Adding \\?\ does not automatically bypas MAX_PATH, unless some other extra steps are being made, e.g. modifing the manifest file and a setting in the registry. https://learn.microsoft.com/en-us/windows/win32/fileio/maximum-file-path-limitation?tabs=registry#enable-long-paths-in-windows-10-version-1607-and-later
  4. dwrbudr

    Grid or ListView with checkbox and combobox

    TMS AdvStringGrid and NextGrid both have support for checkboxes and comboboxes
  5. dwrbudr

    Looking for some guidance on WM_NCCALCSIZE

    You could try DwmGetWindowAttribute along with DWMWA_CAPTION_BUTTON_BOUNDS to get the title bar height
  6. dwrbudr

    TColorBox bad performance, if style differs from default

    If all or most of the comboboxes need to be populated with the same items, then cache the Items of one combobox to a TStringList. Then use ColorBox1.Items := CachedColorItems instead of setting its Style. On my side it increases the performance from 20ms to 15ms
  7. dwrbudr

    RAD Studio 12.1 Athens Patch 1 Available

    Announced yesterday and still not available in my.embarcadero.com
  8. dwrbudr

    RAD Studio 12.1 Athens Patch 1 Available

    Why they've annouced the patch on their blog while it is still not available to download is beyond my imagination.
  9. dwrbudr

    Real time desktop colors change like filters

    You could try https://www.imageen.com/
  10. dwrbudr

    What's the general opinion on v12?

    On my side, Sync Prototypes is not working in Delphi 12, very frustrating. Ctrl+Click also don't work or if it works it takes more than 10-15 sec. Auto-completion also don't work... so another buggy release. Compilation does not work as well - random internal compiler errors or some error and the IDE points to a line after the end. in some unit, so I have to Build the project every time which is quite time consuming.
  11. Use the same calculations for Left and Top. 96 is the default screen pixels per inch at 100% scaling, e.g. Screen.DefaultPixelsPerInch Check your display options in Windows to see what screen scaling you're using, probably 125% or 150%
  12. Try pnlRuntime.Height := MulDiv(350, Screen.PixelsPerInch, 96);
  13. dwrbudr

    Delphi 12 VCL painting differs through RDP

    In Delphi 12 EMB has changed the way DoubleBuffered works in DRP session and added DoubleBufferedMode property. So inspect the source/documentation on that or just play with those properties.
  14. dwrbudr

    Advise the component for editing tables

    Or NextGrid, but I'm not sure if it supports the Ctrl ans Shift selection requirement.
  15. dwrbudr

    Uninstalled D11, now D12 won't start....

    Search the registry HKEY_CURRENT_USER\Software\Embarcadero\BDS\23.0\ for ParnassusCoreEditor.dll and update or delete the key
  16. dwrbudr

    Delphi 12 - Action Bar Menu painting issues with RDS

    Delphi 12 has some changes related to the DoubleBuffered property and RDM. Try to play with form's DoubleBuffered and the newly introduced DoubleBufferedMode properties.
  17. dwrbudr

    TMS: Component compilation error

    It might happen that your PATH environment variable contains the path to the previous Delphi version BPL folder, like: "C:\Users\Public\Documents\Embarcadero\Studio\22.0\Bpl" If you only use Delphi 12, then delete the 22.0\Bpl folder and remove the entry from the PATH
  18. dwrbudr

    Delphi 12 is available

    When you press Ctrl+F 'Whole words' option is checked most of the time, randomly.
  19. dwrbudr

    Delphi 12 is available

    The f*king "Search whole words" bug is still here. Unbelievable!
  20. dwrbudr

    How to render an HTML structure using EdgeBrowser?

    On my system when I use EdgeBrowser.Navigate('file:///c:/temp/blank.html') it strangely opens a new Chrome tab! So if that is not working on your side too, try to load the file to string and use EdgeBrowser.NavigateToString();
  21. dwrbudr

    Zooming At Mouse Position

    How is your code supposed to work since you don't use at all the mouse position in the code?
  22. dwrbudr

    Component color in design time

    Or simply remove seClient from the inner panel StyleElements
×