-
Content Count
3711 -
Joined
-
Last visited
-
Days Won
185
Posts posted by David Heffernan
-
-
Sure, if you ask for an audit, then you want to see the outcome no matter what. But a program that yaps when it manages the to successfully save a file is poor UI. In fact, I've never ever seen such a program.
-
1
-
1
-
-
20 minutes ago, Mike Torrettinni said:Certainly a valid point, but my users already get a message showing success. Now they will get more useful one. Actually, I think I will add user setting 'Don't show file confirmation message' or similar and that should be useful. I hope this satisfies both user types.
Much more valuable is not to show any dialog at all and not to ask them to make a choice about whether they want to see it, and just have the program do the right thing.
-
2
-
1
-
-
Last thing I want to see from an application is a modal dialog telling me that the app just did what I told it to.
-
4
-
-
You can read the C standard to find out how it handles that enum. Then double check with a compiler.
I mean you surely aren't going to commit this without double checking with a C compiler?
-
56 minutes ago, PeterBelow said:If you execute the TParallel.For loop in the main thread then it would probably block the Synchronize call, since that tries to execute code in the main thread. The code can only be executed when the main thread reaches a "safe" state, which, in a typical VCL application, is the message loop. Your code does not get there until the complete loop has been finished.
What you need here is a thread-safe stack class, or you have to use a standard TStack<T> in a thread-safe manner, i. e. use a TCriticalSection object, which you enter before each pop or push call on the stack and leave when the call has returned (using try finally!). The loop will still block your main thread until it is done, though.
So TParallel doesn't service the synchronize queue?
-
As for that zip file, you synchronise the pop but not the push.
Anyway, replace the code with a lock and take it from there.
-
There are other forms of locks that you might use. For cross platform code you'd use a monitor.
-
It could still be related to the code that you have, which we don't have.
Anyway, it's a bad idea to force the code onto the main thread just to serialise it. Use a lock instead.
-
Hard to say with incomplete code. We can only guess as to what PopNode and PushNode do, not to mention the code that operates on the nodes.
-
2 hours ago, edwinyzh said:Interesting approach! Maybe the OP should try it, But I failed to find document about that function.
Type that word into Internet search engine.....
-
Put madExcept in the IDE via a package and then use madTraceProcess to find out what it is doing whilst saving.
-
1
-
-
4 hours ago, Mark Williams said:I have just discovered a component on the Windows 10 tab called TCardPanel. Seems very similar to a page control, but without the tabs. Maybe of some use.
The classic way to do that is a page control where every tab has TabVisible set to False
-
1
-
-
Antagonising your customers and making them hate you is never a good business plan.
-
1
-
-
If this is true, you can't even buy what they claim you need. You have to purchase new licences. You can't purchase maintenence once it has expired.
-
1
-
-
The component vendor is applying a development methodology known as "wishful thinking".
FastMM4 doesn't get this wrong.
-
7
-
-
The reason you don't call FileExists is that CreateFile will fail and GetLastError will tell you that the file does not exist.
You have tell us why you believe that CreateFile should fail in the scenario that concerns you. Another program already opened the file? With what flags?
Rather than have us spend time trying to guess how to recreate the problem, can you provide a complete console app that reproduces the issue.
-
Why do you call FileExists? A single call to CreateFile can tell you what you need. The code as it stands won't tell you whether or not the file is in use. What is hdl? Use THandle as stated above.
As for the problem, debug it! Use GetLastError if CreateFile fails. If CreateFile succeeds then there's presumably something wrong with your logic.
-
16 hours ago, Erix A. said:What's the best environment for MacOS development?
Not Delphi!
-
Task dialog is not suitable for that. However, the form you described, which led me to suggest task dialog, is a very different beast from these forms. The forms you described did not have an edit control or 7 check boxes!!!!
Very hard to give advice when you don't describe the actual problem.
-
3 hours ago, Mike Torrettinni said:I'm not too fond of Vista dialogs, they seem very rigid, not flexible enough to fit in the software design.
That's an odd comment. For dialogs with a message, and couple of checkboxes or buttons then they are perfectly flexible.
If you want to customise every individual form then what are you even asking? Just design each one in the designer.
-
Kinda pointless to measure a getter that just returns or sets the field. Try measuring one that does some work.
-
1
-
-
2 hours ago, egroups said:Do you have any framework for dynamically create forms?
No. I'm not even sure what such a framework would look like. Sounds like massive overkill.
-
1
-
-
I wouldn't consider using the designer for such a thing. I would build the form dynamically in code.
Your example of a dialog with a handful of checkboxes and buttons is just the Vista task dialog.
-
Any developer or organisation that cares about quality should be flexible enough to accept bug reports from a variety of channels.
Clearly if the reporter can enter a high quality report in the project bug tracker, then that is the ideal. But in reality that is not always possible. Sometimes these reports are unclear and imprecise and the project owner has to edit the report. And sometimes the reporter just won't take the required steps. Sometimes the reporter is stubborn and for inexplicable reasons refuses to give their email address and a password to sourceforge 😉
But what developer would here of a bug in their software and not want to fix it? Any developer that is prepared to let bugs pass if they aren't in the tracker should just give up.
Incidentally, it grinds my gears that Emba killed QC without transferring open reports to the replacement. On numerous occasions I have been asked by Emba staff to resubmit to QP the litany of open floating point related bugs that I submitted to QC. It makes no sense to me at all that any developers that care about quality would do that.
-
3
-
GetMemory vs. GetMem
in RTL and Delphi Object Pascal
Posted · Edited by David Heffernan
I'd read that as "GetMemory exists so that the Crtl unit can implement malloc".