

dwrbudr
Members-
Content Count
77 -
Joined
-
Last visited
Everything posted by dwrbudr
-
Or NextGrid, but I'm not sure if it supports the Ctrl ans Shift selection requirement.
-
Creating a recent folder location list in an INI file
dwrbudr replied to JohnLM's topic in Algorithms, Data Structures and Class Design
Or use a semicolon separated list -
Uninstalled D11, now D12 won't start....
dwrbudr replied to Ian Branch's topic in Delphi IDE and APIs
Search the registry HKEY_CURRENT_USER\Software\Embarcadero\BDS\23.0\ for ParnassusCoreEditor.dll and update or delete the key -
Delphi 12 - Action Bar Menu painting issues with RDS
dwrbudr replied to Stéphane Wierzbicki's topic in VCL
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. -
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
-
When you press Ctrl+F 'Whole words' option is checked most of the time, randomly.
-
The f*king "Search whole words" bug is still here. Unbelievable!
-
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();
-
How is your code supposed to work since you don't use at all the mouse position in the code?
-
Or simply remove seClient from the inner panel StyleElements
-
Parallel for and CPU with Performance and Efficient cores
dwrbudr replied to Jud's topic in RTL and Delphi Object Pascal
Isn't that an OS job to do? -
You should look in the Fonts section of Bitmap Style Designer, probably changing Fonts->WindowTextNormal will do the job.
-
Change Font.Color property
-
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
-
Probably you could use TWICImage to load AV1 files if this is installed: https://apps.microsoft.com/store/detail/av1-video-extension/9MVZQVXJBQ9V
-
Prevent Space bar from focusing on a button
dwrbudr replied to Willicious's topic in Delphi IDE and APIs
if Key = VK_SPACE then begin Key := 0; end; -
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/
-
Where to turn off 'Whole words' searching?
dwrbudr replied to Ian Branch's topic in Delphi IDE and APIs
Not for me. This is very annoying bug! -
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.
-
What makes you think TWICImage.Create is not thread-safe in recent Delphi versions?
-
I haven't used that myself, but probably you could check that component: https://github.com/ahausladen/PdfiumLib
-
Inspect Delphi's VCL.Forms.pas -> TTitleBar.GetCaptionButtonsRect -> DwmGetWindowAttribute
-
Inspect VirtualTrees.pas code and especially procedure TBaseVirtualTree.PaintCheckImage
-
GExperts 1.3.22 experimental twm 2023-03-25 released
dwrbudr replied to dummzeuch's topic in GExperts
Is it possible with GExperts to add a shortcut to close the current tab in Delphi IDE by using Ctrl+W? -
Good source for VCL elements with examples and which element to use for an Icon picker?
dwrbudr replied to dfatdp's topic in VCL
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