-
Content Count
3586 -
Joined
-
Last visited
-
Days Won
176
Everything posted by David Heffernan
-
Don't use Application.MessageBox
David Heffernan replied to SergioSmolensk's topic in OmniThreadLibrary
If you are debugging then throwing an exception is the way to do it. Then the debugger freezes all threads. You surely don't want the other threads to continue running at this point. -
Don't use Application.MessageBox
David Heffernan replied to SergioSmolensk's topic in OmniThreadLibrary
Hardly, because you've now ruined your production program. -
Don't use Application.MessageBox
David Heffernan replied to SergioSmolensk's topic in OmniThreadLibrary
Reporting error dialogs from thread pool threads sounds terrible. Stop doing it at all and then you don't need to think that one message box function is better than any other. -
Delphi 12.0 TParallel.For performance. Threading.pas issues
David Heffernan replied to mitch.terpak's topic in General Help
hahahaha -
Error : constant expression violates subrange bounds
David Heffernan replied to Connie McBride's topic in RTL and Delphi Object Pascal
Step 1 to solving the problem is to understabd why you are compiling delphi rtl libraries -
Delphi 12: Do I need to do TList<T>.delete(NativeInt(0)) ?
David Heffernan replied to Perpeto's topic in RTL and Delphi Object Pascal
I would read the documentation the same way you did -
Then you'll have two different instances of the VCL which is why packages exist.
-
I don't think this is a good idea. Just share the source code between your 5 different programs. Trying to setup inter process communication will complicate things massively, and probably needlessly. It will also be difficult to maintain the feel of this being one integrated app if you have multiple processes.
-
Make a minimal yet complète program that demonstrates the issue. Until you isolate the problem by doing this, everything is likely to be a waste of time with irrelevant speculation and guesswork.
-
FYI - Several Embarcadero services are currently unavailable
David Heffernan replied to Keesver's topic in General Help
What's the reputational cost of the current fiasco? -
REMOTE FREELANCE POS APP DEVELOPER REQUIRED
David Heffernan replied to MrCrash's topic in Job Opportunities / Coder for Hire
Who'd engage with this without any idea on the details like compensation?? -
I've never understood why anyone would use getit over the main source repo for open source projects
-
FYI - Several Embarcadero services are currently unavailable
David Heffernan replied to Keesver's topic in General Help
I love these kind of posts. Just because you don't understand the problem does not mean the problem does not exist. -
Quality Portal going to be moved
David Heffernan replied to Uwe Raabe's topic in Community Management
Sucks to be us -
FYI - Several Embarcadero services are currently unavailable
David Heffernan replied to Keesver's topic in General Help
It's ironic that the download spikes caused by all the Delphi 12 downloads have caused this -
FYI - Several Embarcadero services are currently unavailable
David Heffernan replied to Keesver's topic in General Help
"This is caused by a hardware outage at one of our data centers. RAD Studio 12 download volume spikes tasked our infrastructure more than expected. " Why would it spike weeks after release of the software?? -
FYI - Several Embarcadero services are currently unavailable
David Heffernan replied to Keesver's topic in General Help
If I'm running a company like Emba, then I'm not putting production servers on physical hardware with single points of failure. I mean, perhaps there are some incompetent people at Facebook too. I wonder if they learnt from this and changed. -
FYI - Several Embarcadero services are currently unavailable
David Heffernan replied to Keesver's topic in General Help
No idea whether or not this is true. However, there's this really recent tech called virtualisation that allows you to be resilient to hardware failures. I definitely think it has a lot of potential for the future. -
Actually this just looks like what you'd expect to see during process creation. First we check for app compat. We don't find that, fine as you say. And then we map the exe.
-
Best to remove process monitor and get on with something else!
-
FYI - Several Embarcadero services are currently unavailable
David Heffernan replied to Keesver's topic in General Help
Maybe if they just built the web servers with Delphi and use the Delphi philosophy, they'd work -
Delphi - Data is not encoded in given format
David Heffernan replied to Hrushikesh Shet's topic in RTL and Delphi Object Pascal
FYI cross posted here (unicode - Delphi - Data is not encoded in given format - Stack Overflow) and with no code there either. As a rule, I think cross-posting is fine on this site, but you should always note that you've done so to avoid people spending time giving you help when you already received it elsewhere. It's just a good courtesy to the people that you are asking for help. But in any case, you should improve the post (in both places) by giving details of your code so that we have something concrete. -
Same GUID used in interfaces, is there any purpose for this?
David Heffernan replied to HaSo4's topic in RTL and Delphi Object Pascal
^^^^^^^^^ -
Same GUID used in interfaces, is there any purpose for this?
David Heffernan replied to HaSo4's topic in RTL and Delphi Object Pascal
I think the asker knows what GUIDs are used for. However the question is whether the use of the same GUID for two distinct interfaces is a bug or not. -
Thread Destroy with no corresponding Thread Create?
David Heffernan replied to alogrep's topic in VCL
Defect in your code, but in the code you didn't show.