

Der schöne Günther
Members-
Content Count
726 -
Joined
-
Last visited
-
Days Won
12
Everything posted by Der schöne Günther
-
Is it possible to raise an aggregated exception?
Der schöne Günther replied to Der schöne Günther's topic in RTL and Delphi Object Pascal
So far, the only solution I have come up with is ripping out the wanted exception with a class helper 🤷♂️ and then raise this exception instead. function EAggregateExceptionHelper.Extract(const index: NativeInt): Exception; var newArray: TArray<Exception>; arrayIndex: NativeInt; begin newArray := []; Result := nil; with self do begin for arrayIndex := Low(FInnerExceptions) to High(FInnerExceptions) do if(arrayIndex = index) then Result := FInnerExceptions[arrayIndex] else newArray := newArray + [FInnerExceptions[arrayIndex]]; FInnerExceptions := newArray; end; end; -
I don't use Visual Studio for Git, but Visual Studio Code with GitLens. And, from time to time, the Windows explorer integration from TortoiseGit. As far as I recall, Visual Studio didn't even have support for Git stashes until VS 2019.
-
There's not just VSC. Have a look at this: I honestly couldn't care less about the form designer. As horrible as it actually is, it's probably just too much work to completely rewrite it for another environment. Proper debugging capabilities are way more important.
- 29 replies
-
- delphi ide
- delphi
-
(and 2 more)
Tagged with:
-
Are you sure it's a capacitive touch screen or something more sophisticated that works with a "proper" pressure-sensitive pen? There are quite a lot of W10 devices that have an additional digitizer for pen input.
-
Interesting read: https://ux.stackexchange.com/q/84715
-
Trouble with (very) simple XML-parsing
Der schöne Günther replied to Tommi Prami's topic in RTL and Delphi Object Pascal
Doesn't getElementsByTagName(..) only list direct descendants? You will either have to search recursively, or use something like an XPath expression to get all the nodes you are interested in. -
ANN: Find leaks in Delphi and C++ with Deleaker
Der schöne Günther replied to Artem Razin's topic in Delphi Third-Party
That looks very exciting, but I do find the prices a bit steep 😶 Does one license work with both RAD Studio and Visual Studio integration? For VS, does it find leaks for C++/CLI Mixed mode applications? -
SDTimes Industry Watch: The developer transformation
Der schöne Günther replied to Lars Fosdal's topic in Project Planning and -Management
In case anyone wonders, here is the original "study": https://stripe.com/files/reports/the-developer-coefficient.pdf Sure, this PowerPoint has nice colours and everything, but I really don't know what to make of things like (emphasis by me) -
Solution(s) for coder with quite poor eyesight
Der schöne Günther replied to Tommi Prami's topic in Delphi IDE and APIs
I depend on contact lenses. When I don't have them in (at home), I can barely see anything. But then, I can just crank Windows DPI up to 200% and everything is fine on my 27" screen (2560x1440). Normally, I have 125% DPI on that screen. I am, however, not using Delphi at home anymore as it is extremely blurry on 125% DPI. All my other code editors don't have this problem and can instantly switch to higher/lower DPIs with no issues. At 200% DPI, the Delphi IDE should probably look fine, I never tried. What operating systems are you using? Quite some things have improved in the last versions... -
We use DUnitX and it discovers all our silly mistakes before release
Der schöne Günther replied to Lars Fosdal's topic in DUnitX
This might come across as ignorant, but I never really got behind what DUnitX does better than DUnit. For sure, it does things differently. But better? What are the advantages? Why should I consider migrating all DUnit test projects to DUnitX? -
How to properly detect name of exe (running app) in Windows 10
Der schöne Günther replied to johnnydp's topic in Windows API
What exactly is your question? You have a window handle (HWND) and you want to get the full path to the executable behind it? -
Complete Boolean Evaluation
Der schöne Günther replied to dummzeuch's topic in Algorithms, Data Structures and Class Design
I am working on a legacy project which has it enabled. I did not dare to disable it, so all new units get a compiler directive to switch full bool eval off while you have to be extra careful and always keep in mind that full boolean eval is enabled when editing "old" units. Reason? I suppose there was none and "full Boolean evaluation" sounded better than "mediocre Boolean evaluation" -
FYI: Graph showing iOS crashes with recent Delphi versions
Der schöne Günther replied to Hans♫'s topic in Cross-platform
It was some article that referred to a presentation from the early 90s, that's for sure. We once tried making a small application for iOS & Android, and yes, the application had so many fatal crashes with no way of debugging it that we finally gave up. -
FYI: Graph showing iOS crashes with recent Delphi versions
Der schöne Günther replied to Hans♫'s topic in Cross-platform
Are there more information available about the crashes themselves? And didn't Delphi get famous by demonstrating how an unhandled access violation would just produce a messagebox and continued to work afterwards instead of bringing the whole app down? -
appending to a dynamic array
Der schöne Günther replied to dummzeuch's topic in Algorithms, Data Structures and Class Design
The TStringHelper was designed for immutable strings. If I'm not mistaken, Strings on platforms such as iOS are immutable whereas they are still "copy on write" on Windows. All the TStringHelper methods return a new string instance. -
appending to a dynamic array
Der schöne Günther replied to dummzeuch's topic in Algorithms, Data Structures and Class Design
Why would you consider it bad? The arguments are evaluated before calling SetLength(..), so Length(..) returns the length before it was resized High(someArray) is a simple lookup, the size is known -
ABI Changes in RAD Studio 10.3
Der schöne Günther replied to David Millington's topic in RTL and Delphi Object Pascal
Absolutely. Interesting and entertaining to read. Please, more of those. -
I always found using System.Classes.TBits easier to use than raw bit operations... if myValue.Bits[3] then (...)
-
Delphi Rio and tRegEx.Replace Problem
Der schöne Günther replied to microtronx's topic in General Help
Can't you just provide a simple test case with code that actually compiles, your input and your expected result? -
(I am not sure if this should go to Off-Topic.) I am not sure Embarcadero intended this - The new DocWiki template for Rio has nice colours that look less depressing, but they've really overexaggerated the borders padding. Please take a look at the attached pictures for comparison. What would be the best place at Embarcadero to ask about this?
-
I really hate this type of paranoia constructions. What do you think about?
Der schöne Günther replied to Juan C.Cilleruelo's topic in Algorithms, Data Structures and Class Design
Exactly. For regular user applications, you hopefully have a global exception handler that turns an exception object into something readable for the end user. Translating computer speech to text that is shown on screen does not belong into the backend code for handling license data and whatnot. -
I really hate this type of paranoia constructions. What do you think about?
Der schöne Günther replied to Juan C.Cilleruelo's topic in Algorithms, Data Structures and Class Design
But I don't understand - Isn't that just destructive? It throws away the additional information the default exception dialog would have shown you. It displays a generic message which is not helpful. A simple doSomething() is just better. -
I really hate this type of paranoia constructions. What do you think about?
Der schöne Günther replied to Juan C.Cilleruelo's topic in Algorithms, Data Structures and Class Design
That's not harmful, it's just unnecessary code. What really rustles my jimmies is something like this: try doSomething(); except ShowMessage('There was an error'); end; -
Delphi 10.3 | Windows: IFMXScreenService.GetScreenScale broken?
Der schöne Günther replied to Hans♫'s topic in FMX
This is just an idea, maybe it matters whether the executable is being debugged, started from IDE or started from explorer? Maybe it inherits some settings from its parent process (the IDE). -
Microsoft Windows Beta UTF-8 support for Ansi API could break things
Der schöne Günther replied to Tommi Prami's topic in Windows API
Interesting option, I never knew. Anyways, I suppose this should only affect applications from Delphi environments that are over a decade old?