-
Content Count
2830 -
Joined
-
Last visited
-
Days Won
168
Everything posted by Uwe Raabe
-
Inline Variables Coming in 10.3
Uwe Raabe replied to Marco Cantu's topic in RTL and Delphi Object Pascal
At least it compiles... -
Inline Variables Coming in 10.3
Uwe Raabe replied to Marco Cantu's topic in RTL and Delphi Object Pascal
Well, this works: begin var I := 20; const J = I-1; Writeln('I=', I); Writeln('J=', J); end; -
Warning W1010: Method hides virtual method of base type
Uwe Raabe replied to Kryvich's topic in RTL and Delphi Object Pascal
The correct declaration would be: type TPerson = class Name: string; function ToString(Quote: boolean): string; reintroduce; overload; end; -
firemonkey Compiler Defines for FireMonkey and VCL in inc files.
Uwe Raabe replied to Ugochukwu Mmaduekwe's topic in General Help
Well, you might as well add that FrameWork_$(FrameworkType) define directly to your project. That is mostly what @Markus Kinzler suggested before and limits the use to the current project, while the UserTools approach works for any project. In case of your library you would have to do that for each of its projects. Perhaps you can simplify it using an OptionSet. -
firemonkey Compiler Defines for FireMonkey and VCL in inc files.
Uwe Raabe replied to Ugochukwu Mmaduekwe's topic in General Help
Embarcadero could use the same approach as above in one of the target files in the Delphi bin folder. They already do similar things in there. I guess it is time to file a QP report for that. -
firemonkey Compiler Defines for FireMonkey and VCL in inc files.
Uwe Raabe replied to Ugochukwu Mmaduekwe's topic in General Help
Create or extend a file named UserTools.proj in %APPDATA%\Embarcadero\BDS\19.0 (for 10.2 Tokyo) with the following code: <Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> <PropertyGroup> <DCC_Define>FrameWork_$(FrameworkType);$(DCC_Define)</DCC_Define> </PropertyGroup> </Project> Now you can check for the project framework with {$IFDEF FrameWork_VCL} and {$IFDEF FrameWork_FMX}. -
If you read it as ODER BY ROW, COLUMN it makes sense, but I am not sure that it matches the actual context.
-
Is there a way to jump to implementing classes in delphi RAD Studio?
Uwe Raabe replied to dummzeuch's topic in Delphi IDE and APIs
It is a separate plugin I wrote a few weeks ago and I am going to use it as an example for my ToolsAPI session at EKON: Die Delphi ToolsAPI am praktischen Beispiel (in German) The current plan is to publish the sources afterwards. -
Does anyone have some library/unit to make coding of tokeniser/parser/somekind of tree easier?
Uwe Raabe replied to Tommi Prami's topic in Algorithms, Data Structures and Class Design
Although it has been pretty quiet over there for some years I still use GOLD Parsing System in some of my applications. Besides some pre-built ones it allows to create your own grammars as needed. -
Does anyone have some library/unit to make coding of tokeniser/parser/somekind of tree easier?
Uwe Raabe replied to Tommi Prami's topic in Algorithms, Data Structures and Class Design
Are you referring to Pascal/Delphi parsing or parsing in general? -
Is there a way to jump to implementing classes in delphi RAD Studio?
Uwe Raabe replied to dummzeuch's topic in Delphi IDE and APIs
MMX Code Explorer shows "Related Classes". When called from inside an interface it shows the implementing classes with navigation on click. -
Recent Delphi versions also allow something like this: SQL.AddStrings([ 'FROM Entertainers', 'WHERE 1=1', 'AND TEST=''TEST''', 'ORDER BY EntCity ASC, EntStageName ASC' ]);
-
Of course there is:
-
Not quite. Currently the contained sources support all ImageIndex properties of the standard VCL controls, whatever they are named (f.i. TButton). This is done in ImageIndexMapper.Basics.pas which implements and registers wrappers for each of these components. It should be not too difficult to expand this to other components as well. It should also be easy to support other TCustomImageList descendants. This can be implemented either in the imagelist component directly by supporting the INameMapping interface or by registering a wrapper class like shown in ImageIndexMapper.PngImageList.pas. The latter exist only to show the mechanism, while the recent version of PngComponents makes use of the former technique.
-
Inline Variables Coming in 10.3
Uwe Raabe replied to Marco Cantu's topic in RTL and Delphi Object Pascal
...rendering any currently working Delphi parser useless... -
Which type will hold better a TBCDField value?
Uwe Raabe replied to Juan C.Cilleruelo's topic in Databases
What about TBcd? -
I want to say a big Thank You to Daniel for providing a dedicated place for the MMX Code Explorer Community. This is much more that I would have been able to create by myself. Besides the website https://www.mmx-delphi.de/ this will be the most prominent place to announce new versions, answer questions and discuss new features.
-
That is a known bug feature of 10.2 Tokyo. Hopefully they manage to revert the old behavior that the IDE starts with the last selected layout.
-
Directions for ARC Memory Management
Uwe Raabe replied to Marco Cantu's topic in RTL and Delphi Object Pascal
An option for ARC/non-ARC would double the testing effort at least. Given that over the years I learned how to mix objects and interfaces when necessary, I for myself feel quite comfortable with the non-ARC approach. -
I agree it should be the default behavior, but you can achieve this by clicking on the small chat icon in front of the title.
-
Me too! BTW, I like the ease of quoting only part of a post.
-
Is there a possibility that I get redirected to the comment I clicked on the the stream instead to the top of the thread? Better to the first unread comment in that stream. I think that is the behavior of the German forum: When I click an entry in the portal I end up at the first comment in that thread I have not read yet.
-
Agreed. Given that I have plenty of unused space on both sides on my screen, I would rather use the vertical space to show more information.