User dummzeuch - Stack Overflow most recent 30 from stackoverflow.com 2009-12-16T00:10:07Z http://stackoverflow.com/feeds/user/49925 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1890490/upgrade-to-delphi-2010-or-stick-with-delphi-7-forever/1893262#1893262 1 Answer by dummzeuch for Upgrade to Delphi 2010, or stick with Delphi 7 "forever"? dummzeuch 2009-12-12T12:26:17Z 2009-12-12T12:26:17Z <p>Even though I like the new ide and don't want to miss the new features, I would recommend to you sticking with Delphi 7. Unless you hit a show stopper with Delphi 7 programs running on Windows 7 (I am not aware of any, but I have not used Windows 7 so far), why shell out the money? It's not that you are earning any with your programming.</p> <p>Having said that: Where is the promised Turbo Delphi 2010? Or at least a reasonably priced personal edition?</p> http://stackoverflow.com/questions/1762000/use-ssl-with-delphi-yet-still-having-a-single-exe/1765071#1765071 0 Answer by dummzeuch for Use SSL with Delphi yet still having a single exe dummzeuch 2009-11-19T17:27:53Z 2009-11-19T17:27:53Z <p>It is possible to include these DLLs into the program's executable as resources and either export them to files when used or even use them without exporting them first by relocating the code and searching the entry points in memory. I have got code somewhere for doing the latter....</p> http://stackoverflow.com/questions/1699736/how-can-i-return-a-pchar-from-a-dll-function-to-a-vb6-application-without-risking/1700027#1700027 0 Answer by dummzeuch for How can I return a PChar from a DLL function to a VB6 application without risking crashes or memory leaks? dummzeuch 2009-11-09T09:46:28Z 2009-11-09T09:46:28Z <p>You cannot return a PChar as a function result, but you can pass an additional PChar parameter and copy the string you want to return to this PChar. Note, that VB must allocate that string to the required size before passing it to the dll. Also in VB that parameter must be declared as byval param as string AND it must be passed with byval:</p> <pre><code> param = "aaaaaaaaaaaaaaaaaaaa" ' reserve 20 characters call myproc(byval param) </code></pre> <p>The additional byval in the call will do the compiler magic of converting a VB string to a PChar and back.</p> <p>(I hope I remember this is correctly, it has been quite a while since I was forced to use VB.)</p> http://stackoverflow.com/questions/1678456/how-to-port-delphi-library-to-win-ce/1679445#1679445 1 Answer by dummzeuch for How to port delphi library to Win CE? dummzeuch 2009-11-05T09:46:27Z 2009-11-05T09:46:27Z <p>Maybe converting it Delphi for dotNET (nowadays called Delphi Prism) could work. I have no experience with this, though.</p> http://stackoverflow.com/questions/909443/lock-free-multiple-readers-single-writer 3 Lock free multiple readers single writer dummzeuch 2009-05-26T07:48:56Z 2009-10-30T02:47:06Z <p>I have got an in memory data structure that is read by multiple threads and written by only one thread. Currently I am using a critical section to make this access threadsafe. Unfortunately this has the effect of blocking readers even though only another reader is accessing it.</p> <p>There are two options to remedy this:</p> <ol> <li>use TMultiReadExclusiveWriteSynchronizer</li> <li>do away with any blocking by using a lock free approach</li> </ol> <p>For 2. I have got the following so far (any code that doesn't matter has been left out):</p> <pre><code>type TDataManager = class private FAccessCount: integer; FData: TDataClass; public procedure Read(out _Some: integer; out _Data: double); procedure Write(_Some: integer; _Data: double); end; procedure TDataManager.Read(out _Some: integer; out _Data: double); var Data: TDAtaClass; begin InterlockedIncrement(FAccessCount); try // make sure we get both values from the same TDataClass instance Data := FData; // read the actual data _Some := Data.Some; _Data := Data.Data; finally InterlockedDecrement(FAccessCount); end; end; procedure TDataManager.Write(_Some: integer; _Data: double); var NewData: TDataClass; OldData: TDataClass; ReaderCount: integer; begin NewData := TDataClass.Create(_Some, _Data); InterlockedIncrement(FAccessCount); OldData := TDataClass(InterlockedExchange(integer(FData), integer(NewData)); // now FData points to the new instance but there might still be // readers that got the old one before we exchanged it. ReaderCount := InterlockedDecrement(FAccessCount); if ReaderCount = 0 then // no active readers, so we can safely free the old instance FreeAndNil(OldData) else begin /// here is the problem end; end; </code></pre> <p>Unfortunately there is the small problem of getting rid of the OldData instance after it has been replaced. If no other thread is currently within the Read method (ReaderCount=0), it can safely be disposed and that's it. But what can I do if that's not the case? I could just store it until the next call and dispose it there, but Windows scheduling could in theory let a reader thread sleep while it is within the Read method and still has got a reference to OldData.</p> <p>If you see any other problem with the above code, please tell me about it. This is to be run on computers with multiple cores and the above methods are to be called very frequently.</p> <p>In case this matters: I am using Delphi 2007 with the builtin memory manager. I am aware that the memory manager probably enforces some lock anyway when creating a new class but I want to ignore that for the moment.</p> <p>Edit: It may not have been clear from the above: For the full lifetime of the TDataManager object there is only one thread that writes to the data, not several that might compete for write access. So this is a special case of MREW.</p> http://stackoverflow.com/questions/1562601/determining-delphi-runtime-packages-to-include/1564901#1564901 0 Answer by dummzeuch for Determining Delphi Runtime Packages to Include dummzeuch 2009-10-14T08:02:43Z 2009-10-14T08:02:43Z <p>"This DLL is used by many different versions of Delphi."</p> <p>Do you mean that you have programs written with Delphi 7 and other programs written with Delphi 2007 etc. that use the same precompiled DLL?</p> <p>In that case you cannot use any packages to share object types and memory between program and DLL because they will use different versions of the packages wich are not compatible.</p> http://stackoverflow.com/questions/1270656/why-dont-i-get-hotkey-underlines-in-a-delphi-tmainmenu 0 Why don't I get hotkey underlines in a Delphi TMainMenu dummzeuch 2009-08-13T08:00:13Z 2009-10-12T19:13:26Z <p>In a Delphi 2007 program I am using a TMainMenu referencing actions in a TAction list. I have prefixed the hotkeys of all main captions with an ampersand:</p> <pre><code>&amp;File | &amp;Edit | Ev&amp;aluate | ... </code></pre> <p>In design view these hotkeys are underlined as I would expect, but when I start the program they no longer are underlined but they work nonetheless. In contrast to this, for all the submenu icons</p> <pre><code> &amp;File &amp;New ... &amp;Open ... </code></pre> <p>the underline is shown as expected.</p> <p>I am aware of the Windows pisplay properties option "Hide underlined letters or keyboard navigation until I press the Alt key." and have disabled it. In all other programs this works fine, including the Delphi IDE.</p> <p>If I create a new VCL appliation and just add a TMainMenu and a few menu items, it works as expected.</p> <p>This has me baffled, really.</p> <p>Is there any property of the TMainMenu component or maybe an application option that I must change? The "Enable runtime themes" project option is grayed out for some reason, might that be the problem? If yes, what causes this?</p> http://stackoverflow.com/questions/1270656/why-dont-i-get-hotkey-underlines-in-a-delphi-tmainmenu/1556364#1556364 0 Answer by dummzeuch for Why don't I get hotkey underlines in a Delphi TMainMenu dummzeuch 2009-10-12T19:13:26Z 2009-10-12T19:13:26Z <p>The easiest way to fix this problem seems to use TJvMainMenu from the jvcl instead of TMainMenu. I tried the current version 3.38, but it is possible that the problem was fixed already in earlier versions. Since I was using the jvcl anyway it does not add much to my program's size. Your mileage may vary though, the jvcl is a huge library.</p> http://stackoverflow.com/questions/1497230/what-is-the-accepted-way-to-use-frames-in-delphi/1499646#1499646 3 Answer by dummzeuch for What is the accepted way to use frames in Delphi? dummzeuch 2009-09-30T17:47:21Z 2009-10-05T17:08:39Z <p>The only problem with your approach is that you cannot add multiple instances of the same frame to a given form:</p> <pre><code>Frame1 := TMyFrame.Create(Self); Frame1.Parent := Self; // ... Frame2 := TMyFrame.Create(Self); // bombs out with "a component with the name MyFrame already exists" </code></pre> <p>The workaround for his is to assign a different name for each instance:</p> <pre><code>Frame1 := TMyFrame.Create(Self) Frame1.Parent := Self; Frame1.Name := "FirstFrame"; // ... Frame2 := TMyFrame.Create(Self); // works now, there is no name conflict </code></pre> http://stackoverflow.com/questions/1494037/static-classes-in-delphi-win32/1494190#1494190 2 Answer by dummzeuch for Static classes in Delphi (Win32) dummzeuch 2009-09-29T18:33:04Z 2009-09-29T18:33:04Z <p>I am not quite sure what you mean by a "static class". You can declare a class, that has only class methods, so these methods can be called without instantiating the class.</p> <pre><code>TSomeClass.SomeMethod; </code></pre> <p>Is that what you want?</p> http://stackoverflow.com/questions/1472325/saving-a-records-containing-a-member-of-type-string-to-a-file-delphi-windows/1473663#1473663 0 Answer by dummzeuch for saving a records containing a member of type string to a file (Delphi, Windows) dummzeuch 2009-09-24T19:20:28Z 2009-09-24T19:20:28Z <p>You could work with two different files, one that just stores the strings in some convenient way, the other stores the records with a reference to the strings. That way you will still have a file of records for easy access even though you don't know the size of the actual content.</p> <p>(Sorry no code.)</p> http://stackoverflow.com/questions/1454299/simple-virtualfilesystem-for-delphi-must-be-free/1454560#1454560 1 Answer by dummzeuch for simple VirtualFilesystem for delphi - must be FREE! dummzeuch 2009-09-21T13:41:42Z 2009-09-21T13:41:42Z <p>If you are only using NTFS, you might think about writing that data into <a href="http://support.microsoft.com/kb/105763" rel="nofollow">alternate data streams</a>. But beware that copying the file to non-NTFS drives or ZIPing them will remove that data. Maybe that's even desired... </p> http://stackoverflow.com/questions/1453679/best-way-of-validating-modal-dialog-fields/1453919#1453919 1 Answer by dummzeuch for Best way of validating modal dialog fields? dummzeuch 2009-09-21T10:46:27Z 2009-09-21T10:46:27Z <p>The JVCL offers a component set for validating input (TJvValidators etc.). It marks fields that have no valid input and shows a hint to the user when he moves the mouse over that marker. (I think I read about a similar functionality in dotNET but I have never used it.)</p> <p>While I like the concept and have actually used these components in a number of dialogs, I don't like the implementation much: It is a hog on cpu usage and the pre-defined validators that come with the JVCL are not really usefull. Of course, having access to the jvcl svn repository, I could just stop complaining and start improving the components...</p> http://stackoverflow.com/questions/1436164/delphi-if-everything-implemented-an-interface-would-this-be-garbage-collection/1439426#1439426 0 Answer by dummzeuch for [Delphi] If everything implemented an interface, would this be garbage collection? dummzeuch 2009-09-17T14:59:38Z 2009-09-17T14:59:38Z <p>No, because of two things:</p> <ol> <li>Even if a class implements an interface it does not automatically make it reference counted. Only if you actually use it to implement that interface the reference counting will have any effect.</li> <li>As others already said: Reference counting in interfaces will result in the class instance to be freed immediately when the reference count reaches 0. It is an implicit call to the Free method at that point in code. This will fail e.g. if two objects reference each other. True garbage collection will free the objects not when they go out of scope but when memory is needed, so there is no performance impact every time the reference count reaches 0 because the object will just continue to exist. In addition a good garbage collector will detect the isolated circular references (e.g. A references B references C references A but nothing else references any of these objects) and will free these objects as well.</li> </ol> http://stackoverflow.com/questions/642555/how-do-i-calculate-the-azimuth-angle-to-north-between-two-wgs84-coordinates 3 How do I calculate the Azimuth (angle to north) between two WGS84 coordinates dummzeuch 2009-03-13T12:56:51Z 2009-09-14T09:43:15Z <p>I have got two WGS84 coordinates, latitude and longitude in degrees. These points are rather close together, e.g. only one metre apart.</p> <p>Is there an easy way to calculate the azimuth of the line between these points, that is, the angle to north?</p> <p>The naive approach would be to assume a Cartesian coordinate system (because these points are so close together) and just use</p> <p>sin(a) = abs(L2-L1) / sqrt(sqr(L2-L1) + sqr(B2-B1))</p> <p>a = azimuth L1, L2 = longitude B1, B2 = latitude</p> <p>The error will be larger as the coordinates move away from the equator because there the distance between two longitudinal degrees becomes increasingly smaller than the one between two latitudinal degrees (which remains constant).</p> <p>I found some quite complex formulas which I don't really want to implement because they seem to be overkill for points that are that close together and I don't need very high precision (two decimals are enough, one is probably fine either since there are other factors that reduce precision anyway, like the one the GPS returns).</p> <p>Maybe I could just determine an approximate longitudinal correction factor depending on latitude and use somthing like this:</p> <p>sin(a) = abs(L2*f-L1*f) / sqrt(sqr(L2*f-L1*f) + sqr(B2-B1))</p> <p>where f is the correction factor</p> <p>Any hints?</p> <p>(I don't want to use any libraries for this, especially not ones that require runtime licenses. Any MPLed Delphi Source would be great.)</p> http://stackoverflow.com/questions/1385344/is-there-a-way-to-install-delphi-2010-on-windows-2000 3 Is there a way to install Delphi 2010 on Windows 2000 dummzeuch 2009-09-06T10:17:33Z 2009-09-06T14:42:19Z <p>I just downloaded the Delphi 2010 iso from my SA-subscription and wanted to install it in addition to my other Delphi installations on my notebook computer. Unfortunately it refuses to install because the machine is running Windows 2000.</p> <p>Is it possible somehow to get it to install it anyway? Or is there a technical reason why it might not work, even if it installed?</p> <p>edit:</p> <p>Some more information:</p> <ul> <li>Delphi 2009 installed fine on that computer, so dotNET 2.0 is already installed.</li> <li>The Delphi 2010 installer comes up, asks me for the language to use and then says "This product requires at least Windows XP. Setup cannot continue."</li> </ul> <p>What I am looking for now, is either:</p> <ul> <li>a way to get the installer to skip this check and install anyway - or -</li> <li>a reason why this would not work (e.g. Delphi is using some Windows API that is not available in Windows 2000)</li> </ul> http://stackoverflow.com/questions/1284719/no-memory-leak-when-setting-form-as-frames-parent/1284909#1284909 10 Answer by dummzeuch for No memory leak when setting form as frame's parent? dummzeuch 2009-08-16T17:59:27Z 2009-08-16T17:59:27Z <p>Actually you are confusing parent and owner:</p> <p>The owner is passed as parameter to constructor and will take care of freeing the component, the parent is the control which contains the control visually.</p> <p>Example:</p> <p>You have got a form, a panel on that form and a label on that panel: The form usually is the owner of the panel and the label. The form is the parent of the panel and the panel is the parent of the label.</p> <p>As for your question: It is perfectly OK to pass the form that contains the frame as the owner. When the form is freed, it will also free the frame. In addition you must set the parent to some other control for the frame to become visible. That can of course also be the form, but this will not have any effect on freeing the frame.</p> http://stackoverflow.com/questions/1281265/delphi-parsing-a-record-of-unknown-structure/1281361#1281361 4 Answer by dummzeuch for Delphi: Parsing a record of unknown structure dummzeuch 2009-08-15T07:08:20Z 2009-08-15T07:08:20Z <p>No chance at that. A record has no runtime type information attached to it. If you used a class with published properties instead, it would be possible, see the TApplicationStorage/TFormStorage components in the jvcl, the Delphi DFM streaming system and various internet sites for examples.</p> http://stackoverflow.com/questions/1254698/exchange-data-between-two-apps-across-pc-on-lan/1254941#1254941 1 Answer by dummzeuch for Exchange Data between two apps across PC on LAN dummzeuch 2009-08-10T13:37:29Z 2009-08-10T13:37:29Z <p>Probably the easiest way is to read and write a file (or possibly one file per direction). It also has the adavntage that it is easy to simulate and trace. It's not the fastest option, though (and it definitely sounds lame ;-) ).</p> http://stackoverflow.com/questions/1197771/added-the-apptype-console-directive-and-now-my-application-runs-very-slowly-m/1198235#1198235 0 Answer by dummzeuch for Added the {APPTYPE CONSOLE} directive and now my application runs very slowly. Moving the mouse makes it run faster. dummzeuch 2009-07-29T05:48:24Z 2009-07-29T05:48:24Z <p>A timer with 1ms will only fire about every 40 ms (due to Windows limitations), so it won't help. I have seen effects like you describe with mixed console and GUI apps, another is that they don't minimize properly.</p> <p>Instead of enabling the console in the project, you could probably use the CreateConsole API call (Not sure whether the name is correct) to create one after the programm was started. I have seen no adverse effects in the one (!) program I have done this.</p> <p>But this is only necessary if you want to write to the console. If you only want to process command line parameters and return an exit code, you do not need a console. Just evaluate the ParamCount/ParamStr functions for the parameters and set ExitCode for the return value.</p> http://stackoverflow.com/questions/1189892/recommendation-needed-for-good-database-for-delphi-desktop-app/1192218#1192218 0 Answer by dummzeuch for Recommendation needed for good database for Delphi desktop app dummzeuch 2009-07-28T06:27:16Z 2009-07-29T05:35:12Z <p>Why has nobody yet mentioned an MS Access database? The required drivers (ADO / Jet) comes preinstalled with every recent version of Windows (XP, Vista ...), supports multiuser, encryption, Blobs and SQL and is reasonably fast. Mind the maximum database size, though.</p> <p>edit: I don't really understand why this answer was voted down. I have used MS access dbs with Delphi several times and it worked well. It is not meant for heavy multiuser installations, of course and it isn't the fastest around, but that wasn't a requirement in the question.</p> http://stackoverflow.com/questions/1170606/does-long-running-method-is-done-have-a-design-pattern 2 Does "Long running method is done" have a design pattern? dummzeuch 2009-07-23T09:21:49Z 2009-07-24T07:51:23Z <p>I have got a method that takes a long time to complete and want to check regularly whether it is done. This is what I have come up with (simplified code, Delphi 2007):</p> <pre><code>type IWaitForDone = interface function IsDone: boolean; end; function TSomeClass.doSomethingThatTakesLong: IWaitForDone; begin Result := TClassThatDoesIt.Create; end; var Waiter: IWaitForDone; begin Waiter := SomeClass.doSomethingThatTakesLong; while not Waiter.isDone do doSomethingElse; Waiter := nil; end; </code></pre> <p>In the context it is possible that calling isDone actually does a part of what is to be done and returns true, when finished and false while there are still parts to be done. Alternatively it could just check whether another thread is done with its work. I don't want this to be visible to the caller.</p> <p>I guess that I am not the first one to come across this type of problem and this solution probably already has got a name (a design pattern?), but I could not find it. So what is it called?</p> http://stackoverflow.com/questions/1169715/how-can-i-load-a-package-and-keep-the-debugger-working/1169761#1169761 3 Answer by dummzeuch for How can I load a package and keep the debugger working? dummzeuch 2009-07-23T05:26:07Z 2009-07-23T05:26:07Z <p>Not quite the answer to your question: Have you tried to debug the package project, by setting the host application and putting a breakpoint into the package's startup code?</p> http://stackoverflow.com/questions/673248/is-there-a-delphi-code-documentor-that-supports-current-delphi-syntax 4 Is there a Delphi code documentor that supports current Delphi syntax? dummzeuch 2009-03-23T12:45:51Z 2009-07-19T07:01:56Z <p>I am looking for a code documentation tool like PasDoc that supports the Delphi 2007 syntax, in particular nested types.</p> <p>I checked PasDoc and DelphiDoc but they do not support it.</p> <p>I don't like the syntax of the builtin XMLDoc but would prefer something more JavaDoc like (that is: Shorter tag syntax, not quite as verbose as</p> <pre><code>&lt;summary&gt; ... &lt;param&gt; ... </code></pre> <p>etc.)</p> http://stackoverflow.com/questions/1116745/is-this-algorithm-for-lock-free-fifo-queue-management-any-good 1 Is this Algorithm for lock-free fifo queue management any good? dummzeuch 2009-07-12T19:44:04Z 2009-07-13T13:45:34Z <p>I just found this:</p> <p><a href="http://www.emadar.com/fpc/lockfree.htm" rel="nofollow">http://www.emadar.com/fpc/lockfree.htm</a></p> <p>at first glance it looks fine. Is anybody using it? Or maybe somebody already looked at it and found it unusable?</p> http://stackoverflow.com/questions/669073/what-is-the-correct-usage-of-getlasterror-and-formatmessage-in-delphi/1118112#1118112 2 Answer by dummzeuch for What is the correct usage of GetLastError and FormatMessage in Delphi ? dummzeuch 2009-07-13T07:30:28Z 2009-07-13T07:30:28Z <p>While DR is correct, there is a problem with this approach: It does not allow you to specify the context in which the error occurred. Ever seen the error "An API function failed." whithout being any wiser which function it was and where it happended?</p> <p>That's why I wrote the RaiseLastOsErrorEx and Win32CheckEx functions:</p> <pre><code>procedure RaiseLastOsErrorEx(const _Format: string); begin RaiseLastOsErrorEx(GetLastError, _Format); end; procedure RaiseLastOsErrorEx(_ErrorCode: integer; _Format: string); overload; var Error: EOSError; begin if _ErrorCode &lt;&gt; ERROR_SUCCESS then Error := EOSError.CreateFmt(_Format, [_ErrorCode, SysErrorMessage(_ErrorCode)]) else Error := EOsError.CreateFmt(_Format, [_ErrorCode, _('unknown OS error')]); Error.ErrorCode := _ErrorCode; raise Error; end; function GetLastOsError(out _Error: string; const _Format: string = ''): DWORD; begin Result := GetLastOsError(GetLastError, _Error, _Format); end; function GetLastOsError(_ErrCode: integer; out _Error: string; const _Format: string = ''): DWORD; var s: string; begin Result := _ErrCode; if Result &lt;&gt; ERROR_SUCCESS then s := SysErrorMessage(Result) else s := _('unknown OS error'); if _Format &lt;&gt; '' then try _Error := Format(_Format, [Result, s]) except _Error := s; end else _Error := s; end; function Win32CheckEx(_RetVal: BOOL; out _ErrorCode: DWORD; out _Error: string; const _Format: string = ''): BOOL; begin Result := _RetVal; if not Result then _ErrorCode := GetLastOsError(_Error, _Format); end; </code></pre> <p>(They are part of my dzLib library available here: <a href="http://svn.berlios.de/svnroot/repos/dzchart/utilities/dzLib/" rel="nofollow">http://svn.berlios.de/svnroot/repos/dzchart/utilities/dzLib/</a> There you can also find a description, see unit u_dzMiscUtils.)</p> http://stackoverflow.com/questions/1113014/how-to-create-a-thread-in-delphi/1113158#1113158 9 Answer by dummzeuch for How to create a thread in Delphi? dummzeuch 2009-07-11T07:29:57Z 2009-07-11T07:29:57Z <p>Since the Delphi VCL is not threadsafe, you cannot use a thread for your purpose. It's even worse: Not only is it not threadsafe, you are only allowed to call VCL code from the application's main thread.</p> <p>That said, creating a thread in Delphi is as simple as declaring a descendant class of TThread, overriding its Execute method and instantiating it. That was the easy part, everything that follows is the hard part.</p> <p>Sorry for being not helpful, but without knowing more about the particular control you are using, I have no idea how to solve the issue.</p> http://stackoverflow.com/questions/1092010/framework-approach-to-use-for-alerter-type-applet/1092799#1092799 1 Answer by dummzeuch for Framework/approach to use for 'alerter' type applet? dummzeuch 2009-07-07T14:51:28Z 2009-07-07T14:51:28Z <p>I would probably use a file based approach rather than a client server with sockets. Just put the messages into text files on a file server and read them from the clients.</p> <p>Nothing beats such a solution in simplicity. Of course it does not have the buzzword capability of a dotNET services consuming allways on WEB 3.14 community app written with smaragd on rails. ;-)</p> http://stackoverflow.com/questions/1083924/does-a-lock-free-queue-multiple-producers-single-consumer-exist-for-delphi/1084618#1084618 1 Answer by dummzeuch for Does a lock-free queue "multiple producers-single consumer" exist for Delphi? dummzeuch 2009-07-05T18:47:10Z 2009-07-07T10:09:25Z <p><a href="http://svn.berlios.de/svnroot/repos/dzchart/utilities/dzLib/trunk/lockfree/" rel="nofollow">http://svn.berlios.de/svnroot/repos/dzchart/utilities/dzLib/trunk/lockfree/</a></p> <p>@Daniele Teti:</p> <p>The reader must wait for all writers who still have access to the <em>old</em> queue to exit the Enqueue method. Since the first thing the reader does in the Dequeue method is providing a new queue for new writers which enter Enqueue it should not take long for all writers that have a reference to the old queue to exit Enqueue. But you are right: It is lock free only for the writers but might still require the reader thread to wait for some writers to exit Enqueue.</p> http://stackoverflow.com/questions/1039654/can-i-create-a-class-that-is-inherited-from-a-class-and-from-interfaces-in-delphi/1054773#1054773 1 Answer by dummzeuch for Can I create a class that is inherited from a class and from interfaces in Delphi? dummzeuch 2009-06-28T11:47:58Z 2009-06-28T11:47:58Z <p>The easiest option is to derive TDevice from TInterfaced Object and just extend your descendants with the additional methods. Beware of interface reference counting, though, otherwise you will end up with lots of unexpected access violations.</p> <p>Alternatively you can write a wrapper object that descends from TInterfacedObject and delegates the implementation of the interfaces to TDevice descendants. In that case reference counting will be less of a problem.</p> <pre><code>TMacAddressWrapper = class(TInterfacedObject, IMacAddress) private FDevice: TDevice; property Device: TDevice read FDevice implements IMacAddress; public constructor Create(_Device: TDevice); end; constructor TMacAddressWrapper.Create(_Device: TDevice); begin inherited Create; FDevice := _Device; end; </code></pre> http://stackoverflow.com/questions/814648/delphi-what-are-your-dos-and-donts-tips/816478#816478 Comment by dummzeuch on Delphi: What are your "Do's and Don'ts" tips? dummzeuch 2009-12-08T15:11:37Z 2009-12-08T15:11:37Z Using FreeAndNil on something that is not an object will result in weird errors. Eg. try to use it on an interface or a record. It will still compile but at runtime it will bomb out. http://stackoverflow.com/questions/1772411/adding-validator-symbol-next-to-control-on-a-delphi-form/1772468#1772468 Comment by dummzeuch on Adding validator symbol next to control on a Delphi form. dummzeuch 2009-11-21T17:57:28Z 2009-11-21T17:57:28Z But beware: This component is difficult to understand without an example (but there is one in the jvcl installation), the validators that come with the jvcl are mostly useless and depending on how often it is called it will slow down your GUI code. But the concept is nice. http://stackoverflow.com/questions/1726210/working-with-delphi-and-access/1726218#1726218 Comment by dummzeuch on working with Delphi and Access dummzeuch 2009-11-13T08:09:01Z 2009-11-13T08:09:01Z Depending on who you ask, database aware controls are evil. But at least you should know that they exist and what advantages and disadvantages they have. http://stackoverflow.com/questions/1717844/how-to-determine-delphi-application-version/1717978#1717978 Comment by dummzeuch on How to determine Delphi Application Version dummzeuch 2009-11-11T21:06:45Z 2009-11-11T21:06:45Z Actually, you don't want the current svn revision number but the one of the commit <i>after</i> you did the build. Also, you don't want to read it from a text file but have it as part of your program source code (e.g. via an include file, or as you suggested in the versioninfo resource. http://stackoverflow.com/questions/1700859/did-java-steal-away-the-fun-from-programming/1701020#1701020 Comment by dummzeuch on Did Java steal away the fun from programming? dummzeuch 2009-11-09T18:53:18Z 2009-11-09T18:53:18Z Last time I looked, Delphi was the reason for my monthly paycheck. I got this job because of my Delphi knowledge and that was not 10 years but only 2 years ago. So, yes, it would feed my kids, if I had any, but at least it feeds me and my significant other. We hired another Delphi developer this very year (fresh from uni). So there is still some market for them. http://stackoverflow.com/questions/1699736/how-can-i-return-a-pchar-from-a-dll-function-to-a-vb6-application-without-risking/1700027#1700027 Comment by dummzeuch on How can I return a PChar from a DLL function to a VB6 application without risking crashes or memory leaks? dummzeuch 2009-11-09T16:46:00Z 2009-11-09T16:46:00Z @runner: VB does not have a PChar type but can only convert its own string type to PChar and back. So there is no way you could call a FreeMemory function from VB (OK, there might be some hack to do it). (I am talking about VB6 like in the original question, I have no idea about VB.NET in that respect.) http://stackoverflow.com/questions/1694001/is-there-a-fast-gettoken-routine-for-delphi/1694082#1694082 Comment by dummzeuch on Is There A Fast GetToken Routine For Delphi? dummzeuch 2009-11-07T21:08:43Z 2009-11-07T21:08:43Z But will that work with unicode? http://stackoverflow.com/questions/1678456/how-to-port-delphi-library-to-win-ce/1679445#1679445 Comment by dummzeuch on How to port delphi library to Win CE? dummzeuch 2009-11-06T07:43:57Z 2009-11-06T07:43:57Z @Marco: But according to marketing (I have no personal experience with it) it is very compatible to Delphi. If it was me who was tasked with porting that library I would try Prism first. http://stackoverflow.com/questions/1678456/how-to-port-delphi-library-to-win-ce/1679445#1679445 Comment by dummzeuch on How to port delphi library to Win CE? dummzeuch 2009-11-05T19:57:13Z 2009-11-05T19:57:13Z @Marco: That depends on the library. If it compiles with Prism without many changes, it would be much easier than recoding in C#. http://stackoverflow.com/questions/1658347/what-is-the-difference-between-types-defined-in-the-implementation-as-compared-to/1658367#1658367 Comment by dummzeuch on What is the difference between types defined in the implementation as compared to the interface section of a unit? dummzeuch 2009-11-05T09:52:33Z 2009-11-05T09:52:33Z There actually is an overhead involved: If you change the interface section of a unit, the compiler will recompile all units that use this unit which in turn will force it to recompile all units that use these recompiled units. A change in the implementation section does not trigger this recompile. But that's only a compile time issue, there is no runtime overhead involved and even the compile time does not matter that much given the speed of the Delphi compiler. http://stackoverflow.com/questions/1676576/how-to-pass-and-return-objects-to-and-from-a-dll Comment by dummzeuch on How to pass and return objects to and from a DLL? dummzeuch 2009-11-05T09:29:36Z 2009-11-05T09:29:36Z @mghie: Please don't get discouraged by people like this. For each of them there are 100th that do a search first, find their answer and are gone again. You never hear from them. http://stackoverflow.com/questions/1634742/get-bpl-file-name/1651140#1651140 Comment by dummzeuch on Get BPL File Name dummzeuch 2009-10-30T22:13:35Z 2009-10-30T22:13:35Z It's even easier: Result := PChar(Result); http://stackoverflow.com/questions/1612089/find-current-method-name-in-delphi/1612159#1612159 Comment by dummzeuch on Find current method name in Delphi dummzeuch 2009-10-23T17:41:59Z 2009-10-23T17:41:59Z But beware: Each call to these functions adds quite some overhead because it does a lookup on the address. This should not be done in production code without need. http://stackoverflow.com/questions/669073/what-is-the-correct-usage-of-getlasterror-and-formatmessage-in-delphi/669090#669090 Comment by dummzeuch on What is the correct usage of GetLastError and FormatMessage in Delphi ? dummzeuch 2009-10-21T17:27:47Z 2009-10-21T17:27:47Z Note: Using a resource string will result in an API call, so you lose the error code! http://stackoverflow.com/questions/1385344/is-there-a-way-to-install-delphi-2010-on-windows-2000/1385816#1385816 Comment by dummzeuch on Is there a way to install Delphi 2010 on Windows 2000 dummzeuch 2009-10-05T17:30:04Z 2009-10-05T17:30:04Z It is now several weeks later and I have not yet seen any problems. But again, I am not using all the features so there still might be something in store.