-
Content Count
2750 -
Joined
-
Last visited
-
Days Won
162
Everything posted by Uwe Raabe
-
The FinalBuilder Action allows to specify a manifest, but it is not (yet) capable to build a new one from scratch. Seems you need to create one by yourself. Thankfully there is an article showing how to do it: https://www.finalbuilder.com/resources/blogs/windows-manifest-files
-
Can you try to replace the ctNone with ctAPPLICATION_JSON?
-
The Custom Body content doesn't look very JSON like. Try adding the brackets.
-
How to change the TVirtualImageList editor?
Uwe Raabe replied to luciano_f's topic in Delphi IDE and APIs
I didn't say the file exists. When a unit is neither provided as source nor as a compiled DCU, it can still be provided inside a DCP file, which is the case for the unit ImageCollectionEditor. It is contained inside dclwinx.dcp and thus can be used in other design packages. I cannot give a link or attach that file because it is not listed under the Redist folder of Delphi. -
How to change the TVirtualImageList editor?
Uwe Raabe replied to luciano_f's topic in Delphi IDE and APIs
dclwinx.dcp is located in lib\win32\release in the Delphi folder and the corresponding design package (dclwinx280.bpl for Delphi 11) is located in the bin folder. You won't find anything on the web for it, neither the package nor the unit, because Embarcadero doesn't provide any information for it. -
How to change the TVirtualImageList editor?
Uwe Raabe replied to luciano_f's topic in Delphi IDE and APIs
The package is part of the Delphi installation and the unit is included in the package. There is no source. -
How to change the TVirtualImageList editor?
Uwe Raabe replied to luciano_f's topic in Delphi IDE and APIs
Try unit Imagecollectioneditorthe in the dclwinx package. -
How to change the TVirtualImageList editor?
Uwe Raabe replied to luciano_f's topic in Delphi IDE and APIs
This Editor is for TImageList, not for TVirtualImageList. AFAIK, the editor for TVirtualImageList is not shipped as source. -
He already mentioned before: As I already own a license for HTML Components there is a good chance that it may be included as an extension to the Unit Dependency Analyzer in MMX.
-
Is there a way to setup a shortcut to "re-run" the Delphi LSP instances?
-
Seems you are still refusing to give the formatter settings you are using. How do you expect being helped if you don't give us the requested information?
-
Of course you can - just write it down. Note, that a style guide is not applied automatically. The developers must adhere to it when they write code. As we don't know what your are doing in the moment, we cannot say what you need to change to get the desired outcome. Therefore my request above.
-
I cannot reproduce that behavior here. Can you give detailed steps, please?
-
Can you show the complete code block with real indentation and your Line Break formatter options?
-
wuppdi Welcome Page for Delphi 11 Alexandria?
Uwe Raabe replied to PeterPanettone's topic in Delphi IDE and APIs
Are you asking a theoretical question or in the wrong forum? -
It probably is part of the UniDAC components from DevArt.
-
I will try to reveal not too much, but I expect these questions to have satisfying answers with the release.
-
The line breaks in the code is always CR/LF as that is Windows standard, but you can define the line breaks that the compiler uses to make a string out of it. As string is always Unicode, there is nothing to define. Whatever you need the string for has to take care that it is converted to the correctly encoded byte sequence. It seems that quite some part of this discussion is missing the target. The feature is about line breaks inside string literals, which previously could only be created by concatenating strings and line breaks. The new syntax allows an easier way to write (and paste) with the benefit of better readability. And finally, if someone doesn't like it there is no obligation to use it.
-
Try setting FetchOptions.LiveWindowParanoic to True.
-
When will we have a 64-bit IDE version ?
Uwe Raabe replied to luciano_f's topic in Delphi IDE and APIs
The voting system is to give priority to some issues over others. Priority may be different for all users here. It is counter productive to vote for an issue that has less priority to oneself, as that reduces the chance for issues you prioritize to be implemented. -
When will we have a 64-bit IDE version ?
Uwe Raabe replied to luciano_f's topic in Delphi IDE and APIs
Why not https://quality.embarcadero.com/browse/RSP-33115 ? That one already has 17 votes (which is not very much either and lies in the ranks at about 180) -
Can you list the following settings for the TFDTable instance: CachedUpdates FetchOptions.Unidirectional FetchOptions.CursorKind FetchOptions.LiveWindowParanoic Also, is KeyIdx a primary or unique key?
-
I have difficulties to understand your intention here. Why would you want to enter a multiline string literal to declare a single line string literal? The whole purpose of the new multiline string literal is to get line breaks into a string literal. There is no need to have line breaks when they are later ignored anyway.
-
There already exists a syntax to achieve this: const blub = 'Lorem' + ' ipsum' + ' dolor';
-
That is exactly my own experience with MMX. When I took over the project it already was way behind the current language and it needs quite some time to catch up. While that may be possible for the IDE itself, as the owner has at least some control over the release date, this fails completely for 3rd party tools even if their maintainers participate in the beta (at least everyone willing can opt for that). A lot of enhancements are not ready early in the beta and often changed in between due to the ongoing discussion. Usually there is only a small time left before release where a feature is stable enough to support it in ones tool. Unfortunately the effort to design and implement that while staying compatible with older Delphi versions needs way more time as is left.