-
Content Count
2839 -
Joined
-
Last visited
-
Days Won
168
Everything posted by Uwe Raabe
-
No! If you start the setup you are asked to remove the registry settings and the default is no. Unless you change that all settings are kept.
-
Blogged : Advice for Delphi library authors
Uwe Raabe replied to Vincent Parrett's topic in Tips / Blogs / Tutorials / Videos
That may be true for the Delphi 4 and 5 packages, but can easily be dropped for all others. The naming of the bpl files would still be the same. Honestly? With the current scheme you have this breakage for each new Delphi version. -
Looks like there is a different RaizeComponentsVcl270.bpl found somewhere.
-
Worked perfectly just a minute ago. Can you try to remove that library and try again? Perhaps you have to clear the corresponding folder in $(CatalogRepository) in between.
-
Blogged : Advice for Delphi library authors
Uwe Raabe replied to Vincent Parrett's topic in Tips / Blogs / Tutorials / Videos
http://docwiki.embarcadero.com/RADStudio/Sydney/en/10.4_Sydney_-_Release_1#Projects -
Worked flawlessly over here. AFAIK GetIt packages are not re-installed, but I don't use those anyway. I always install packages directly and these are all present after the update.
-
Blogged : Advice for Delphi library authors
Uwe Raabe replied to Vincent Parrett's topic in Tips / Blogs / Tutorials / Videos
If it is the only change in the project files, it would at least work for packages 10.4 and up - at least until any new setting throws a spanner into the gear. -
how to keep unit files opened in project??
Uwe Raabe replied to Joe Sansalone's topic in Delphi IDE and APIs
Under Tools - Options - IDE - Saving and Desktop there is a setting Save project desktop when closing. -
Blogged : Advice for Delphi library authors
Uwe Raabe replied to Vincent Parrett's topic in Tips / Blogs / Tutorials / Videos
It was introduced in 10.4 Sydney - Release 1 -
Blogged : Advice for Delphi library authors
Uwe Raabe replied to Vincent Parrett's topic in Tips / Blogs / Tutorials / Videos
Meanwhile a bit dusty, but most of it is still valid and overlaps your suggestions nicely: Delphi Library Guidelines -
Read and reapply design time properties to specific controls - runtime
Uwe Raabe replied to aehimself's topic in VCL
The problem with those ExplicitXXX values is that they are synched with their current XXX counterparts on several occasions. These are WM_SIZE, WM_MOVE and SetBounds. You cannot assume that these values contain the original DFM content, even if that was the case after loading the form. -
Read and reapply design time properties to specific controls - runtime
Uwe Raabe replied to aehimself's topic in VCL
What about creating a new form instance and adjust the components and properties in question from that? -
class operator, AND/OR/XOR question
Uwe Raabe replied to A.M. Hoornweg's topic in RTL and Delphi Object Pascal
From the Docwiki: Oops: too late -
class wrongly placed, when added in the context of a Console application
Uwe Raabe replied to Didier Cabalé's topic in MMX Code Explorer
That is a know deficiency: MMX doesn't work properly in the project code, only in units. -
"Member Search bar" click resets the context where you expect the search must be applied
Uwe Raabe replied to Didier Cabalé's topic in MMX Code Explorer
Well, the Module Search is actually a member of the top pane and it is selected when you enter the Search box. It is similar to selecting one of the uses clause entries or a Live Metrics entry. Each selection switches the content of the bottom pane. I understand that you prefer a different behavior, but others (probably long time MMX users) prefer or may even rely on the current one. I'm sorry, but it is very unlikely that this will be changed. -
"Member Search bar" click resets the context where you expect the search must be applied
Uwe Raabe replied to Didier Cabalé's topic in MMX Code Explorer
Well, at least that is what the tooltip for Member Search bar says: -
Do you mean a Class? Because a Unit cannot be created when required.
-
Inherited on Properties and co.
Uwe Raabe replied to Attila Kovacs's topic in RTL and Delphi Object Pascal
FData is private, but the helper sets inherited Data, which is public. -
How to set version number for all the projects in a project group
Uwe Raabe replied to Soji's topic in Delphi IDE and APIs
Actually it is: https://github.com/DelphiPraxis/DDevExtensions/releases/tag/v2.87- 11 replies
-
- build version
- configuration manager
-
(and 3 more)
Tagged with:
-
Inherited on Properties and co.
Uwe Raabe replied to Attila Kovacs's topic in RTL and Delphi Object Pascal
At least since Delphi 7 (cannot check versions below in the moment). Just have a look at DB.pas (out of many others): function TFieldDefs.GetFieldDef(Index: Integer): TFieldDef; begin Result := TFieldDef(inherited Items[Index]); end; or the ancient Contnrs.pas: function TObjectList.GetItem(Index: Integer): TObject; begin Result := inherited Items[Index]; end; -
IDE hangs for a few seconds every couple of minutes
Uwe Raabe replied to RaelB's topic in MMX Code Explorer
This is a screenshot of the 10.4.1 IDE with MMX 15.0.33 (no DPI overrides): https://www.dropbox.com/s/ij71pobp9kebxn1/07-02-_2021_14-13-21.png?dl=0 There are some glitches with labels being too long, which come from scaling fonts to the next Integer size. Whenever I see those I try to adjust that with the next update. Can you elaborate a bit on the problems you see? (Perhaps in a separate topic) -
IDE hangs for a few seconds every couple of minutes
Uwe Raabe replied to RaelB's topic in MMX Code Explorer
I am running different Delphi versions together with the latest MMX on two 4k monitors with scaling set to 150% and I don't experience any problems. Inspecting the MMX changes between 15.0.29 and 15.0.30 I cannot spot anything causing spurious delays. -
Changing properties in Object Inspector does not stick
Uwe Raabe replied to Mark Williams's topic in Delphi IDE and APIs
Fixed in 10.4.1: Object inspector looses a changed property value when selecting an other component -
Did you rename the fast compilers to replace the original ones?
-
IDE hangs for a few seconds every couple of minutes
Uwe Raabe replied to RaelB's topic in MMX Code Explorer
I am unable to spot any change between 15.0.30 and 15.0.32 that may be responsible fot that. I need more info (yeah, I know that may be difficult)