mghie

14,323
reputation
1176 views

Registered User

name mghie
member for 1 year
seen 21 mins ago
website
location Dresden, Germany
age 39
Developer (Turbo Pascal since 1992, Delphi since 1995, lately C++ as a potential way to go beyond the deficiencies of Object Pascal).

Interested in multi-platform programming, multi-threading and HIG conforming user interfaces.
18h
comment Delphi SDI application - Not handling cascade/tile horizontal & tile vertically?
What's the value of Application.MainFormOnTaskbar? Does it differ between the version that works and the one that doesn't?
20h
comment How Can I Get Shortcuts To Work in a Non-Modal Form in Delphi
There must be something else still. I did all of these tests, and everything worked for me. This is with Delphi 2009, fully patched.
21h
revised How Can I Get Shortcuts To Work in a Non-Modal Form in Delphi
added 822 characters in body
22h
comment How Can I Get Shortcuts To Work in a Non-Modal Form in Delphi
Yes, I assume that due to modal dialogs disabling all other forms in the application their action components are not used for determining what key events will be mapped to commands. If the key events go to the native windows unmodified, then shortcuts still work. However, if you place the action components and the menu on the modal dialog then it doesn't work either. That's why I was saying that modality doesn't really matter, it's just that it affects which action lists are used to search for potential shortcuts. A side effect, if you will.
1d
awarded  delphi
1d
answered How Can I Get Shortcuts To Work in a Non-Modal Form in Delphi
1d
revised delphi records and c structs
added 500 characters in body
2d
accepted Minimize Delphi Application with Live Popup Menu
2d
comment Is there a way to instantiate a class by its name in delphi?
This is not how StackOverflow works. If you have a question that relates to an earlier one, please ask a new question while providing a link to the one you are referring to.
2d
answered Minimize Delphi Application with Live Popup Menu
2d
accepted Best approach for thread synchronized queue
2d
comment Best approach for thread synchronized queue
I must be missing something. There are indeed times when more than one request thread can run, but the important sections (request processing) are serialized. There is also no risk of deadlock that I can see?
2d
revised Best approach for thread synchronized queue
Sample implementation
2d
answered Best approach for thread synchronized queue
2d
comment Best approach for thread synchronized queue
Note that there is no new thread, since you already had TTaskQueueThread. You'd just let it have a window and use blocking message processing.
2d
comment Best approach for thread synchronized queue
Note that this is the same principle that is used to serialize methods calls to a STA COM object.
2d
answered Best approach for thread synchronized queue
2d
comment Best approach for thread synchronized queue
I see, but these constraints are not at all visible from your question. I think you would get much better answers if you remove the details of your own solution, state the problem only and ask for approaches to solve it.
2d
comment Best approach for thread synchronized queue
If you have multiple threads that suspend and resume one another to make sure that only one executes at any given time - then you should realize that your whole design is wrong. In that case a request should not equal a thread.
2d
comment How can I fix “Cannot open clipboard: Access Denied” errors?
This is not a Win32 problem either - it's a simple fact when programming for concurrent systems.
2d
answered How can I fix “Cannot open clipboard: Access Denied” errors?
2d
answered Multi-threaded access of components in Delphi
2d
answered delphi records and c structs
Dec
6
awarded  Mortarboard
Dec
5
comment How to ensure 16byte code alignment of Delphi routines?
OK, for those that still haven't realized how to read stuff there: Google for the title "Borland Delphi Asm, align 16 problem" and click the first result. If referred from Google the discussion can be viewed.
Dec
5
revised How to avoid a thread freezing when Main Application is Busy
Synchronize() <-> SendMessage() correction
Dec
5
comment How to avoid a thread freezing when Main Application is Busy
@Mick: I'm fully aware of that correction, as that comment is to my own answer. However, for the purpose of this discussion it doesn't matter - even with Synchronize() calling PostMessage() the worker thread will block, just not on the SendMessage() call, but on the event. The outcome is the same, the worker thread won't progress.
Dec
4
comment How to check if string is a valid DateTime Format string in Delphi
Indeed, +1. Everything that isn't a valid placeholder would remain as-is. Coupled with a list of valid placeholders this would allow the user to iteratively change the format until they're satisfied. If you flesh out your answer (maybe with some code sample) I'd like to see it accepted.
Dec
4
comment update TListView item
Duplicate of stackoverflow.com/questions/1293112/… - please search SO before you ask a new question.
Dec
4
answered How to implement the OnResizeEnd Event for TFrame ?
Dec
4
comment How to implement the OnResizeEnd Event for TFrame ?
The messages WM_ENTERSIZEMOVE and WM_EXITSIZEMOVE messages are sent only to the window that is being resized, not to its child windows. So it will only be sent to forms with a sizing border, not to any frames these may contain.
Dec
3
comment How to run a 3rd party process with strickly no GUI in Delphi
This is not Delphi-specific. Essentially it's a duplicate of stackoverflow.com/questions/1143206/…
Dec
3
comment How do i compile my delphi project on the command line?
@gath: There would not be any problem to use this environment for Delphi 2, even.
Dec
3
comment How do i compile my delphi project on the command line?
I'm using CruiseControl.NET with NAnt. What's the problem with NAnt so you would use WAnt instead?
Dec
3
revised How do i compile my delphi project on the command line?
added 324 characters in body
Dec
3
comment problem subclassing TTreeNode in delphi
+1, good answer. IMO the data structure should definitely exist elsewhere, and the tree should only reference it (doesn't matter whether via pointers or handles, like list indexes) to make object ownership clearer and properly decouple data from presentation.
Dec
3
answered How do i compile my delphi project on the command line?
Dec
3
comment How to call a function/procedure asynchronously in Delphi (Without components)
I hinted at that possibility in my comment, but now I added an example to make it really clear.
Dec
3
revised How to call a function/procedure asynchronously in Delphi (Without components)
Sample code added
Dec
2
revised Is there a hex editor component for recent Delphi versions?
edited tags
Dec
2
comment How to call a function/procedure asynchronously in Delphi (Without components)
Yes it is, only between 2and 3 kLOC, so it's fairly minimal already. I don't think this can be beat. The interface is extremely straightforward, all the hairy stuff is in the implementation part ;-) Just make sure you keep IAsyncCall references until the call has finished, otherwise the last reference count decrement will block.
Dec
2
answered [Inno Setup] Why would an ocx control not register properly?
Dec
2
revised Read stored procedure parameters’ type in Firebird
Formatting improved
Dec
2
answered How to call a function/procedure asynchronously in Delphi (Without components)
Dec
1
comment Delphi 6 stack trace
Duplicate of stackoverflow.com/questions/1740266/…
Nov
30
comment How to use a checkbox in Delphi?
Please edit this - Delphi does not necessarily use short-circuit evaluation, the behaviour depends on the {$B} compiler directive or the respective command line switch!
Nov
30
accepted ShLwApi.StrFormatByteSize and Delphi 2010 Unicode
Nov
30
comment Is there any tools/utility to convert “string” to “AnsiString” in pascal source files?
It may be quick but it certainly wouldn't be safe.
Nov
30
answered ShLwApi.StrFormatByteSize and Delphi 2010 Unicode
Nov
29
comment recursive file search thread
The code in this newsletter leaves much to be desired. Loren Pechtel highlights some of the shortcomings in his answer, but the biggest blunder is to use WaitFor on a self-destroying thread - this is a crash waiting to happen. If you want to see a better example for file scanning in a worker thread, check out the OTL implementation here: 17slon.com/blogs/gabr/…