Jump to content

dwrbudr

Members
  • Content Count

    60
  • Joined

  • Last visited

Everything posted by dwrbudr

  1. dwrbudr

    RAD Studio 12.1 Athens Patch 1 Available

    Announced yesterday and still not available in my.embarcadero.com
  2. 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.
  3. dwrbudr

    Real time desktop colors change like filters

    You could try https://www.imageen.com/
  4. 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.
  5. 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%
  6. Try pnlRuntime.Height := MulDiv(350, Screen.PixelsPerInch, 96);
  7. 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.
  8. dwrbudr

    Advise the component for editing tables

    Or NextGrid, but I'm not sure if it supports the Ctrl ans Shift selection requirement.
  9. 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
  10. 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.
  11. 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
  12. dwrbudr

    Delphi 12 is available

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

    Delphi 12 is available

    The f*king "Search whole words" bug is still here. Unbelievable!
  14. 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();
  15. 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?
  16. dwrbudr

    Component color in design time

    Or simply remove seClient from the inner panel StyleElements
  17. dwrbudr

    VCL Styles - Font Change (editing vsf style file)

    You should look in the Fonts section of Bitmap Style Designer, probably changing Fonts->WindowTextNormal will do the job.
  18. dwrbudr

    I would like blue not black

    Change Font.Color property
  19. I think it includes decoder for images as well. But probably you have to install the following extension since the container is HEIF, where the image itself is encoded in AV1. https://apps.microsoft.com/store/detail/heif-image-extensions/9PMMSR1CGPWG?hl=en-us&gl=us&activetab=pivot%3Aoverviewtab So, install both extensions and give it a try using TWICImage
  20. Probably you could use TWICImage to load AV1 files if this is installed: https://apps.microsoft.com/store/detail/av1-video-extension/9MVZQVXJBQ9V
  21. dwrbudr

    Prevent Space bar from focusing on a button

    if Key = VK_SPACE then begin Key := 0; end;
  22. dwrbudr

    Delphi gitlab question

    Try this for a starting .gitignore - https://github.com/github/gitignore/blob/main/Delphi.gitignore The .dproj files are XML files which on project Save, Delphi sometimes "reorders" some of its XML nodes (probably a dictionary is used somewhere instead of lists). So you could get a modified .dproj file if you've just added a new line in the .dpr and pressed Save. In order to avoid that try to use Project Magician plugin for the IDE https://www.uweraabe.de/Blog/2018/05/17/keep-your-project-files-clean-with-project-magician/
×