-
Content Count
2839 -
Joined
-
Last visited
-
Days Won
168
Everything posted by Uwe Raabe
-
No, it was just a reply to the quoted statement.
-
Well, at least there is Swagger Codegen
-
Install two different licenses for Delphi 2007
Uwe Raabe replied to dummzeuch's topic in Delphi IDE and APIs
Login with another user account. It is a Named User license after all. The slip file containing the client license is the same for all users. The license server just looks for the user name logged in to the client computer. Edit: That user has to be listed in the named licenses of the license server - of course. -
I remember someone else complaining about an error with AQTime and the editor context menu. There have been some changes in the context menu logic in recent Delphi versions. Perhaps the AQTime team didn't get a notice about that, yet. It might help to file a bug report at SmartBear.
-
That might be caused by the editor context menu being triggered even for non-source modules. Will try to catch that.
-
1 error + 1 error = 3 errors? where is the extra one?
Uwe Raabe replied to c0d3r's topic in Delphi IDE and APIs
After all, the first error was actually made by the developer, not the compiler. -
1 error + 1 error = 3 errors? where is the extra one?
Uwe Raabe replied to c0d3r's topic in Delphi IDE and APIs
Actually there are two errors: undeclared identifier cannot compile unit Seems to be pretty correct in my view. -
In the Options property of TDBGrid set dgCancelOnExit to False.
-
In case you are referring to the GDI scaling: That is already available in 10.4.1 Manifest File (Windows Only)
-
Is possible to examine the library-> search path when IDE not start?
Uwe Raabe replied to alogrep's topic in Delphi IDE and APIs
You have to start the IDE at least once to get the entries for HKCU. Otherwise you have to look into HKLM. -
Is possible to examine the library-> search path when IDE not start?
Uwe Raabe replied to alogrep's topic in Delphi IDE and APIs
Why do you think this information is stored in two different places? -
How are your settings about saving the project desktop? Is the MainForm auto-created in the dpr?
-
Delphi Event-based and Asynchronous Programming eBook complete version released
Uwe Raabe replied to Dalija Prasnikar's topic in Tips / Blogs / Tutorials / Videos
Less hugs, less bugs... -
According to the docwiki, InternalCalc fields are only supported in TClientDataSets: On the other hand, FireDAC mentions an example of using fkInternalCalc.
- 28 replies
-
- firedac
- calculated fields
-
(and 1 more)
Tagged with:
-
Can you provide some code?
- 28 replies
-
- firedac
- calculated fields
-
(and 1 more)
Tagged with:
-
If it is declared as fkInternalCalc, its value can be set in the OnCalcField event when the dataset State is dsInternalCalc.
- 28 replies
-
- firedac
- calculated fields
-
(and 1 more)
Tagged with:
-
What data types can I pass from client to datasnap server
Uwe Raabe replied to alnickels's topic in Network, Cloud and Web
You can find a list here: Exposing DataSnap Server Methods -
git and Delphi tooling?
Uwe Raabe replied to Lars Fosdal's topic in Project Planning and -Management
There is no Tortoise folk. That are two totally different tribes that just picked the same name. -
I guess I finally found the cause: When you edit a property inside an interface the available visibility values are limited to default. Now edit a property in a class and the visibility is also default. The reason is that the current visibility is set before the allowed values are set. A fix will be available shortly. Can you check if you have Pick up any style comments as documentation checked in your MMX Documentation settings? That would take the commented method declaration as a comment belonging to the one below. Consequently the comment is moved together with the method declaration.
-
Yeah, I have seen that, too. My perception is, that it happens when you just ran the current project in the debugger.
-
That can't happen using this approach. Internally the Post executes a parametrized UPDATE statement, which is exactly what you suggest.
-
Is XML Documentation in Delphi 10.4 is 105% broken?
Uwe Raabe replied to Lajos Juhász's topic in Delphi IDE and APIs
How would you know that? It might as well been noticed, but either too late or of lower priority to make it into the release. -
ModelMaker IDE Integration Expert for Delphi 10.3 Rio released
Uwe Raabe posted a topic in MMX Code Explorer
Users of ModelMaker may appreciate the availability of a Modelmaker IDE Integration Expert for Delphi 10.3 Rio. Note: ModelMaker is a separate Native Delphi Visual modeling and Refactoring tool based on UML™ 2 technology. Not to be confused with MMX Code Explorer. More info here: ModelMaker IDE Integration Expert for Delphi 10.3 Rio released -
ModelMaker IDE Integration Expert for Delphi 10.3 Rio released
Uwe Raabe replied to Uwe Raabe's topic in MMX Code Explorer
Go to the download page for MMX: https://www.mmx-delphi.de/downloads/download-info/mmx-setup/ Next to the version field there is a link Previous versions. For XE5 you have to go for V13. -
"natural" compare function for sort
Uwe Raabe replied to Tommi Prami's topic in Algorithms, Data Structures and Class Design
TStringHelper.Compare has an overload where you can give the option TCompareOption.coDigitAsNumbers for this purpose.