-
Content Count
1282 -
Joined
-
Last visited
-
Days Won
28
Everything posted by Sherlock
-
They would have a ton of other bugs to fix before adding this new feature...all in all it is a waste of time and energy, just scrap it and invest said time and energy into more crucial parts of the IDE.
-
Can't reproduce. BUT I have stupid Error Insight disabled. Which incidentally is recommended at this time (actually since it was introduced).
-
Please check your paths. Also you might want to consider deleting the .dproj and let Delphi rebuild a new one based on the .dpr
-
Very cool @Attila Kovacs: Now please add possibility to switch between Win32/Win64/iOS/macOS/Linux and Debug/Release 😉 Just kidding. For the average developer this really looks helpful.
-
AV on finalizing TThreadPool [PPL]
Sherlock replied to Alexander Pustotin's topic in RTL and Delphi Object Pascal
There are actually not that many changes in System.Threading.pas. But due to the lack of comments in the code (I hate that) and knowledge in my head (I hate that too) I can't discern which of these changes are bad. On the other hand I'm pretty sure we have a couple of bright guys here, that can find the issue pretty darn fast.- 9 replies
-
- parallel library
- ppl
-
(and 1 more)
Tagged with:
-
Well, at first glance the projects window fulfills almost all of your requirements. It shows all open projects and through right click you'll get a menu that lets you build and run with or without debugger. http://docwiki.embarcadero.com/RADStudio/Rio/en/Projects_Window Sherlock
-
Cross platform version of Windows.WinAPI.IsDebuggerPresent ?
Sherlock replied to Lars Fosdal's topic in Cross-platform
😄 BTT: Windows and Android are not all the supported platforms, hence the warning. -
Cross platform version of Windows.WinAPI.IsDebuggerPresent ?
Sherlock replied to Lars Fosdal's topic in Cross-platform
Too easy @TiGü: -
GExperts fails to load after upgrading Rio from 10.3 to 10.3.1
Sherlock replied to luebbe's topic in GExperts
Uninstall and reinstall? -
I've never used that before, but to me it looks pretty clear, that IsFirstInstance is not a stand-alone function but a class function of TogFirst. So when you want to use it, you must use it through its class (or in this case record): if TogFirst.IsFirstInstance then begin ShowMessage('Yay!'); end;
-
Trying to install ICS 858 on C++ Builder Rio 10.3.1
Sherlock replied to alank2's topic in ICS - Internet Component Suite
That looks like tedious work, how come that has not been done on the distributors side, or why is it undocumented? -
Trying to install ICS 858 on C++ Builder Rio 10.3.1
Sherlock replied to alank2's topic in ICS - Internet Component Suite
The prefixes suggest that possibility very strongly -
If that were the case we should at least be getting some decent burgers...
-
I can't stress enough, that it's only a hunch, that GExperts might be the culprit here. So, I installed Rio.1 on Wednesday and piled all the nice tools on to it. All seemed well. Now I started to use it more and get this AV every time I end it: At first I used the expert manager to disable all the other experts, but to no avail. Then I uninstalled GExperts (GXRS10.3-13C-experimental-twm-2018-12-22) and the AV is gone. It might be the mixture of experts, but it is a rather common one (I hope): GExperts CnPack Parnassus Bookmarks and Navigator MMX Explorer DDevExtensions All newest versions as of today. Could this have anything to do with GExperts? Or should I look somewhere else?
-
I should have thought of that myself! Thanks! It is not GExperts that has a problem here...it is FixInsight. Here is the call stack: So I should create a call there. Thanks for your help!
-
How do I find out in which Delphi version a certain RTL/VCL change was implemented?
Sherlock replied to A.M. Hoornweg's topic in RTL and Delphi Object Pascal
I would expect it to be the other way around. In general I would calculate one build per form factor. Unless the app is highly flexible size wise. So considering the very large Android biosphere as opposed to the three iphones + 4 or 5 iPads that's 8 iOS builds (tops, I don't build for iPhone and need only one iPad build) plus one macOS build. And you can get all those builds from the same XCode i.e. macOS machine. This is not even counting the version problem with Android. For iOS you currently have to develop for 3 versions to get more than 90% device coverage (https://david-smith.org/iosversionstats/). This also means you only need to create a 64Bit iOS 10 binary. For Android that is a bit more complicated (ignoring the Intel CPUs): You have 5 versions to consider viable for your customers (https://fossbytes.com/most-popular-android-versions-always-updated/). Frankly I don't know the Android build process, but it seems you have to consider a bit more than with iOS. -
So...this is what my structure panel looks like... I know low contrast seems to be a cool thing these days, but this is ridiculous. After searching QP for a while I didn't find an existing issue for this and created one: https://quality.embarcadero.com/browse/RSP-23756 On a side note, the panel headers are very large and cost quite some space...sadly not configurable.
-
Yes, 10.3.1. I have restarted the IDE several time now, never got the effect again. On the other hand I discovered that the Layout is not stored. The panels left and right from the editor or form designer always start out way to narrow. This is costing me some nerves...
-
So...I don't know what happened. But from yesterday to now, it suddenly looks good. White font over dark gray background. I'll append my call. Weird. I actually just installed the new version of IDEFixPack...I'll try to get the older one to reproduce...
-
Travis CI joins Idera
Sherlock replied to Ugochukwu Mmaduekwe's topic in Tips / Blogs / Tutorials / Videos
Well, now reality has arrived: https://www.heise.de/developer/meldung/Folge-der-Uebernahme-Idera-entlaesst-offenbar-viele-Travis-Mitarbeiter-4315673.html Or a taste of it in English: https://twitter.com/hashtag/TravisAlums?src=hash -
Ooooh, in that case: Rio is getting there. Seriously!
-
😄 Nah, AEG ceased to be AEG a long time ago.
-
Everything worked out fine. Took more than an hour, because after upgrading to 10.14, macOS discovered there is something called 10.14.3 available, and installing that took some time again. Delphi-wise I still can't use the 64Bit iOS-Simulators, but apart from that, everything is A-OK.
-
Object inspector in Rio 10.3.1 looses a changed property value when selecting an other component
Sherlock replied to Tom Mueller's topic in Delphi IDE and APIs
Please clarify: is this a VCL or FMX issue, or both? Because I can not reproduce for FMX.