dwrbudr
Members-
Content Count
63 -
Joined
-
Last visited
Community Reputation
8 NeutralTechnical Information
-
Delphi-Version
Delphi 11 Alexandria
Recent Profile Visitors
The recent visitors block is disabled and is not being shown to other users.
-
TMS AdvStringGrid and NextGrid both have support for checkboxes and comboboxes
-
You could try DwmGetWindowAttribute along with DWMWA_CAPTION_BUTTON_BOUNDS to get the title bar height
-
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
-
RAD Studio 12.1 Athens Patch 1 Available
dwrbudr replied to Uwe Raabe's topic in Delphi IDE and APIs
Announced yesterday and still not available in my.embarcadero.com -
RAD Studio 12.1 Athens Patch 1 Available
dwrbudr replied to Uwe Raabe's topic in Delphi IDE and APIs
Why they've annouced the patch on their blog while it is still not available to download is beyond my imagination. -
You could try https://www.imageen.com/
-
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.
-
Why the size of the component create at runtime does not equal the design time?
dwrbudr replied to billionjk's topic in RTL and Delphi Object Pascal
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% -
Why the size of the component create at runtime does not equal the design time?
dwrbudr replied to billionjk's topic in RTL and Delphi Object Pascal
Try pnlRuntime.Height := MulDiv(350, Screen.PixelsPerInch, 96); -
Why the size of the component create at runtime does not equal the design time?
dwrbudr replied to billionjk's topic in RTL and Delphi Object Pascal
What is the DPI your monitor runs at? -
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.
-
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.