

FredS
-
Content Count
430 -
Joined
-
Last visited
-
Days Won
4
Posts posted by FredS
-
-
Where there changes in Record Helper?
Nothing compiles for me.. but I still can't get to DocuWiki and the help 'What's new' seems all 10.4 stuff..Â
-
9 minutes ago, Angus Robertson said:every 10.x release had a different code name to release name.
That might require a 'new feature' request 🙂
Â
Â
-
1
-
-
5 minutes ago, Javier Tarà said:but Delphi 11 won't install
Try clicking 'Advanced' then select the active license..
-
1
-
-
3 hours ago, Stefan Glienke said:as old as generics
Can't expect 'em to implement a new feature in under 5 years now..
-
3
-
-
1 minute ago, Uwe Raabe said:is easier than implementing.
So are Roadmaps 🙂
-
1 hour ago, Dalija Prasnikar said:LSP is a complex feature and it will take time to solve all issues.
Please, has been announced since around Godzilla..
-
28 minutes ago, Tom F said:if I shipped my app without debug info, and I want to find an address in THAT build
With info in the MAP file for that build.
 -
9 hours ago, Dave Novo said:DDevExtensions had "Release Compiler Unit cache"
Â
ANN:DDevExtensions is now on GitHub
-
13 minutes ago, Drewsky said:So I can access all USB devices or I am limited with Hyper-V?Â
One of the options besides adding already plugged in ones was to alert when you plug one in but I didn't test it.
Â
Use local resources on Hyper-V virtual machine with VMConnect
-
1 hour ago, Darian Miller said:And now a patch for 10.4.2 is released!
And the sheer number of bug fixes since Feb 24th shows we are nearly caught up 🤣Â
-
5 hours ago, Lajos Juhász said:It's not a minor bug, but a major showstopper
Sure, but what about all those free skins 🙂
Â
-
9 hours ago, Lars Fosdal said:get vaccinated
Thinking of donating that when/if it becomes available 🙂
-
Last time I had a similar issue I simply used a DX Adorner.. perhaps you can use a panel that changes parent, visibility and is re positioned and be done with it..
This works because those would cover a disabled/dimmed tab but be accessible since they aren't parented by the tab..Â
-
Last time I had a similar issue I simply used a DX Adorner.. perhaps you can use a panel that changes parent, visibility and is re positioned and be done with it..
This works because those would cover a disabled/dimmed tab but be accessible since they aren't parented by the tab..Â
-
7 minutes ago, aehimself said:Any help is greatly appreciated
I'm confused, what's the reason for wanting your controls to look Un-Dimmed?
Â
..and if that is the case why not custom draw just your Tabsheet/Panel background dimmed?
-
1
-
-
27 minutes ago, srdstm said:Lost an entire day
That's cheap, there is most likely a lot more in those double secret fixes..
-
Declaration:
{$IF NOT DECLARED(RegDeleteTree)} function RegDeleteTree(hKey: HKEY; lpSubKey: LPCTSTR):LONG ; stdcall; external advapi32 name 'RegDeleteTreeW' delayed; {$IFEND DECLARED(RegDeleteTree)}
Â
-
8 hours ago, Fr0sT.Brutal said:Usually there's a list of all running threads in process
Where is that?
Â
As for GlobalStopEvent, I simply use a TThread Helper with a private class FShutdownEvent.
Â
Every thread uses TWait.For<whatnot> which allows multiple handles and always adds the ShutdownEvent, within the Thread's Execution one can call TWait.IsShutdown without waiting..
Very close to:Â
-
29 minutes ago, John Kouraklis said:global var to indicate that the app is shutting down
I use a global TEvent that is set at shutdown, all my wait functions check that and all threads check it either through wait or in their execute methods.
Â
-
1
-
-
7 hours ago, Dalija Prasnikar said:Many people are here and that is all that matters
Not really, that searchable data had huge value. Most weird issues/errors had many iterations of fixes and additional information.
Certainly while stuck with several of those over the years a quick search was all that was needed.. its the difference between a few minutes and an extended pause..
Â
-
1
-
-
10 hours ago, Jacek Laskowski said:entire Firebird database from win-1250 to UTF-8 encoding?
Assuming you have no 'explicit COLLATE ' in your tables you can use ALTER CHARACTER SET on an empty DB and batch move data into that.
Â
Or add this to your creation statement, keep in mind there where speed issues with UNICODE_CI_AI until v3.07:
CREATE DATABASE :FileName USER :UserName PASSWORD :Pwd PAGE_SIZE 16384 default character set UTF8 collation UNICODE_CI_AI ;
Â
-
13 hours ago, FPiette said:The external sources where much much more used
Â
You mean while they repeatedly shut down and wipe historic info from the newsgroups and the forum for extended periods?
Â
Because I thought it was a perfect split, SO for code stuff and those Newsgroups and Forums for hard to figure out errors and missing documentation.
Â
-
7 hours ago, Davide Angeli said:I'm not able to reproduce in a small case
This has been an issue on and off for a while now.
Projects don't even need to be very large for it to happen and its better in one release then comes back with an update.
Â
Steps that helped, depending on Release version:
- Remove all source but your project's from accessible paths, GetIt does the opposite..
- This means pre-compile Components in both Release and Debug
-
Use a Clean.bat which removes all DCUs that may have been compiled using different directives.
For me this was key, switching configuration outputs DCUs to a different subdir but for some reason Delphi failed to comprehend that. - Eliminate all circular references, MMX works well for that..
Not something that would happen if Delphi was still built with Delphi.
Â
-
1
-
Try deleting your entire DCU Output directory before compiling.
Â
Note from a clean.cmd I execute via Build Tools:
After using Gexperts clean a lot of compile issues went away, I have always guessed that this IDE bug that breaks 'Build Groups' and all compiling with linking errors is a folder salad created by the IDE.
Â
Â
RAD Studio 11 Alexandria is now available
in General Help
Posted
I started that way, now its the opposite 🙂