Jump to content

dwrbudr

Members
  • Content Count

    77
  • Joined

  • Last visited

Everything posted by dwrbudr

  1. dwrbudr

    Advise the component for editing tables

    Or NextGrid, but I'm not sure if it supports the Ctrl ans Shift selection requirement.
  2. 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
  3. 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.
  4. 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
  5. dwrbudr

    Delphi 12 is available

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

    Delphi 12 is available

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

    Component color in design time

    Or simply remove seClient from the inner panel StyleElements
  10. 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.
  11. dwrbudr

    I would like blue not black

    Change Font.Color property
  12. 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
  13. Probably you could use TWICImage to load AV1 files if this is installed: https://apps.microsoft.com/store/detail/av1-video-extension/9MVZQVXJBQ9V
  14. dwrbudr

    Prevent Space bar from focusing on a button

    if Key = VK_SPACE then begin Key := 0; end;
  15. 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/
  16. dwrbudr

    Where to turn off 'Whole words' searching?

    Not for me. This is very annoying bug!
  17. dwrbudr

    VCL-Bitmap rescaler

    The creation of the FImagingFactory is protected by a critical section. Is there anything else that shall be protected by a critical section, e.g. some other class variable or something else.
  18. dwrbudr

    VCL-Bitmap rescaler

    What makes you think TWICImage.Create is not thread-safe in recent Delphi versions?
  19. dwrbudr

    Working with PDF files??

    I haven't used that myself, but probably you could check that component: https://github.com/ahausladen/PdfiumLib
  20. Inspect Delphi's VCL.Forms.pas -> TTitleBar.GetCaptionButtonsRect -> DwmGetWindowAttribute
  21. dwrbudr

    VirtualStringTree as table - CheckBox in columns

    Inspect VirtualTrees.pas code and especially procedure TBaseVirtualTree.PaintCheckImage
  22. dwrbudr

    GExperts 1.3.22 experimental twm 2023-03-25 released

    Is it possible with GExperts to add a shortcut to close the current tab in Delphi IDE by using Ctrl+W?
  23. On the second question, yes you can use TListView like in that SVG Image Explorer tool, sources are in the Demo folder. https://github.com/EtheaDev/SVGIconImageList/wiki/SVGIconExplorer
×