User Jim - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T01:41:05Z http://stackoverflow.com/feeds/user/22722 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/450535/does-shoes-have-a-list-view-control 2 Does Shoes have a list view control? Jim 2009-01-16T14:23:04Z 2009-11-20T00:22:21Z <p>I was taking a look at Shoes which seems like a very nice tool for quick GUI applications. The common elements/controls, however, don't seem to include the equivalent of a list/report view (<em>e.g.</em>, ListView in Windows, NSTableView in OS X).</p> <p>Did I just miss this, or does it not (yet) exist?</p> http://stackoverflow.com/questions/1466229/what-can-cause-system-move-to-occasionaly-give-wrong-results/1467672#1467672 2 Answer by Jim for What can cause System.Move to occasionaly give wrong results? Jim 2009-09-23T18:06:59Z 2009-09-23T18:06:59Z <p>Careful - you're assuming that a Char = 1 byte. That was fine before D2009, but in D2009 and D2010 a char is 2 bytes. Move always works with bytes. Is it possible these problems happened after you upgraded to D2009 or D2010?</p> http://stackoverflow.com/questions/1279022/colortodec-function-clred-0000ff/1279250#1279250 1 Answer by Jim for ColorToDec function (clRed = $0000FF)? Jim 2009-08-14T17:55:33Z 2009-08-14T17:55:33Z <p>I've always been a fan of "Format" for such uses:</p> <pre><code>function ColorToHex(color: TColor): String; begin Result := Format('$%.6x', [integer(aColor)]); end; </code></pre> http://stackoverflow.com/questions/1153003/is-there-an-overview-of-all-codes-that-can-be-used-inside-nslog/1153436#1153436 2 Answer by Jim for Is there an overview of all codes that can be used inside NSLog()? Jim 2009-07-20T13:01:04Z 2009-07-20T13:01:04Z <p>Also, there's a very nice overview, as well as some tips and tricks, in the most recent "Friday Q&amp;A" posting on Mike Ash's NSBlog blog: </p> <p><a href="http://www.mikeash.com/?page=pyblog/friday-qa-2009-07-17-format-strings-tips-and-tricks.html" rel="nofollow">http://www.mikeash.com/?page=pyblog/friday-qa-2009-07-17-format-strings-tips-and-tricks.html</a></p> http://stackoverflow.com/questions/944896/prevent-delphi-com-component-from-showing-messagebox/945373#945373 2 Answer by Jim for Prevent Delphi COM component from showing MessageBox() Jim 2009-06-03T15:19:42Z 2009-06-03T15:19:42Z <p>What does the messagebox say? I'm assuming it's an exception. Why don't you put an exception handler around the code in the COM component, and log the exception in a different way? (E.g., using the Event Log). And/or fix the problem that's leading to the exception in the first place.</p> http://stackoverflow.com/questions/926845/how-to-group-constant-strings-together-in-delphi/926888#926888 9 Answer by Jim for How to group constant strings together in Delphi Jim 2009-05-29T16:22:26Z 2009-05-29T16:22:26Z <p>See <a href="http://edn.embarcadero.com/article/34324" rel="nofollow">http://edn.embarcadero.com/article/34324</a> ("New Delphi language features since Delphi 7".</p> <p>A class constant would do nicely. From that link above:</p> <pre><code>type TClassWithConstant = class public const SomeConst = 'This is a class constant'; end; procedure TForm1.FormCreate(Sender: TObject); begin ShowMessage(TClassWithConstant.SomeConst); end; </code></pre> http://stackoverflow.com/questions/920675/how-can-i-delay-a-method-call-for-1-second/920699#920699 14 Answer by Jim for How can I delay a method call for 1 second? Jim 2009-05-28T12:58:13Z 2009-05-28T12:58:13Z <p>performSelector:withObject:afterDelay</p> http://stackoverflow.com/questions/888028/are-core-data-fetches-nsfetchrequest-sorted-in-any-specific-fashion-by-default/888120#888120 0 Answer by Jim for Are Core Data fetches (NSFetchRequest) sorted in any specific fashion by default? Jim 2009-05-20T14:07:57Z 2009-05-20T14:07:57Z <p>The order may not be "random every time" but as far as I know you cannot/should not depend on it. If you need a specific order, then use sort descriptors.</p> http://stackoverflow.com/questions/860119/delphi-custom-message-handlers/860206#860206 4 Answer by Jim for Delphi custom message handlers Jim 2009-05-13T20:21:08Z 2009-05-13T20:21:08Z <p>Aside from the message name in the other answer, you are posting a message to Self.Handle while Self is going away. You probably meant to post to a different handle (the window that launched the modeless one). Give your modeless window access to that handle when you create it, and post the message there instead.</p> http://stackoverflow.com/questions/824662/registration-free-com-not-working-on-windows-server-2003 1 Registration-free COM not working on Windows Server 2003 Jim 2009-05-05T12:32:36Z 2009-05-05T17:02:52Z <p>I have created the necessary manifests for my COM server DLL and a client application to work registration-free in Windows XP. I've tested all kinds of combinations (with and without a registration) and in all cases the client application sees the side-by-side version of the library if the manifests are present, and the registered one if not (or a COM error if there is no registration at all). I've tested on my Windows XP development machine, and given the files (DLL, client EXE and one manifest for each) to co-workers, who've also run everything successfully on their own Windows XP machines. The manifests are external XML files, not embedded resources. So far, so good. </p> <p>However, when I copy the files to a Windows Server 2003 machine, it doesn't work. I get a silent failure, but an application error in the Application Event Log (see below). If I unregister the DLL and remove the manifests, I get a similar error (silent at the command prompt, but an application error in the event log). Obviously there is some problem finding the registration. I have reproduced this on every Windows Server 2003 machine I can access at our company. According to the Microsoft documentation on side-by-side/registration-free COM, it's supposed to work on Windows XP and later, and Windows Server 2003 and later.</p> <p>To be clear, the same client runs perfectly on those same Windows Server 2003 machines against a <em>registered</em> (<em>i.e.,</em> using regsvr32) version of the same COM DLL, under the same login credentials I'm trying to use for registration-free COM. In other words, there are no intrinsic issues masquerading as registration-free COM problems - this client and server operate fine when the server is registered globally in the registry.</p> <p>Anybody have any ideas of how to investigate further? I'm not an expert on Windows Server, but is there perhaps some policy setting that would need to be changed to enable this support? If I can locate the necessary change, our tech support/infrastructure people will probably have no probably doing it, but I can't rely on them to research the issue too as they are swamped.</p> <p>In case it matters (I don't think it should, but you never know) the DLL is written in Delphi 2007, while the client is written in Visual C++.</p> <pre> Event Type: Information Event Source: Application Error Event Category: (100) Event ID: 1004 Date: 5/2/2009 Time: 8:07:45 AM User: N/A Computer: ***server name**** Description: Reporting queued error: faulting application ***program name***.exe, version 0.0.0.0, faulting module ***program name***.exe, version 0.0.0.0, fault address 0x0002ac9e. For more information, see Help and Support Center at http://go.microsoft.com/fwlink/events.asp. </pre> http://stackoverflow.com/questions/743713/newly-created-modal-window-loses-focus-and-become-inacessible-in-windows-vista/743813#743813 4 Answer by Jim for Newly created modal window loses focus and become inacessible in Windows Vista Jim 2009-04-13T12:52:51Z 2009-04-13T12:52:51Z <p>Take a look at the PopupParent property. You may want to set it explicitly for your modal form prior to the ShowModal call. When PopupParent is nil (default) VCL behaves a bit differently depending on the value of the related PopupMode property.</p> <p>If you set the modal form's PopupParent to the form that's active just before you call ShowModal, that may help. </p> http://stackoverflow.com/questions/740562/where-and-how-do-i-register-an-object-for-receiving-an-notification/740606#740606 4 Answer by Jim for Where and how do I register an object for receiving an Notification? Jim 2009-04-11T18:44:44Z 2009-04-11T18:44:44Z <p>Much simpler to use the application delegate and implement the optional method</p> <pre><code>- (void)applicationDidReceiveMemoryWarning:(UIApplication *)application </code></pre> <p>Most common notifications are also available translated into calls to a delegate, typically to optional methods in a formal protocol. Your delegate can be whatever object you like.</p> http://stackoverflow.com/questions/673624/bundle-videos-or-download-later/674192#674192 1 Answer by Jim for Bundle videos or download later? Jim 2009-03-23T16:51:52Z 2009-03-23T16:51:52Z <p>I recently saw an alert in the appstore app on the phone that it would not permit me to update the app I was trying to update over 3G as it was > 10MB in size - I had to wait until I had WiFi connectivity. Just another issue to be aware of.</p> http://stackoverflow.com/questions/668247/uitouch-movement-speed-detection/668641#668641 1 Answer by Jim for UITouch movement speed detection Jim 2009-03-21T02:46:34Z 2009-03-21T02:46:34Z <p>You could try (zero out distanceSinceStart and timeSinceStart in touchesBegan):</p> <pre><code>distanceSinceStart = distanceSinceStart + distanceFromPrevious; timeSinceStart = timeSincestart + timeSincePrevious; speed = distanceSinceStart/timeSinceStart; </code></pre> <p>which will give you the average speed since you started the touch (total distance/total time).</p> <p>Or you could do a moving average of the speed, perhaps an exponential moving average:</p> <pre><code>newSpeed = (1.0 - lambda) * oldSpeed + lambda* (distanceFromPrevious/timeSincePrevious); oldSpeed = newSpeed; </code></pre> <p>You can adjust lambda to values near 1 if you want to give more weight to recent values.</p> http://stackoverflow.com/questions/635982/what-happens-to-an-object-that-falls-out-of-scope-in-delphi/635990#635990 4 Answer by Jim for What Happens to an Object That Falls Out of Scope in Delphi? Jim 2009-03-11T19:27:56Z 2009-03-12T15:35:42Z <p>It becomes leaked memory.</p> <p>You should typically surround such allocations thus:</p> <pre><code>locallist := TStringList.Create; try // work with locallist here finally locallist.Free; end; </code></pre> <p>The only kind of references in Delphi that are suicidal when they drop out of scope are interface references.</p> http://stackoverflow.com/questions/631902/how-do-i-turn-specific-delphi-warnings-and-hints-off/631970#631970 7 Answer by Jim for How do I turn specific Delphi warnings and hints off? Jim 2009-03-10T19:47:22Z 2009-03-10T19:47:22Z <p>Why don't you instead change the code so the hint goes away? Those hints are usually pretty accurate. And if you really feel that the line of code (I'm guessing some variable initialization or other) is useful to the reader of your code even if it is irrelevant to the compiler, you can replace it with a comment.</p> http://stackoverflow.com/questions/501111/looking-for-ode-integrator-solver-with-a-relaxed-attitude-to-derivative-precision/512876#512876 0 Answer by Jim for Looking for ODE integrator/solver with a relaxed attitude to derivative precision Jim 2009-02-04T19:21:22Z 2009-02-04T19:21:22Z <p>I'm not sure this is a well-posed question. </p> <p>In many algorithms, <em>e.g,</em> nonlinear equation solving, f(x) = 0, an estimate of a derivative f'(x) is all that's required for use in something like Newton's method since you only need to go in the "general direction" of the answer. </p> <p>However, in this case, the derivative is a primary part of the (ODE) equation you're solving - get the derivative wrong, and you'll just get the wrong answer; it's like trying to solve f(x) = 0 with only an approximation for f(x).</p> <p>As another answer has suggested, if you set up your ODE as applied f(x) + g(x) where g(x) is an error term, you should be able to relate errors in your derivatives to errors in your inputs.</p> http://stackoverflow.com/questions/495785/how-to-reuse-a-delphi-ole-server-with-a-second-client/495876#495876 2 Answer by Jim for How to reuse a (Delphi) OLE server with a second client? Jim 2009-01-30T15:22:22Z 2009-01-30T15:22:22Z <p>In the client, use </p> <p><code>ConnectKind := ckRunningOrNew</code></p> <p>and an existing server should be used instead of starting a new one.</p> http://stackoverflow.com/questions/206286/how-do-you-tell-someone-theyre-writing-bad-code/206391#206391 2 Answer by Jim for How do you tell someone they're writing bad code? Jim 2008-10-15T20:44:56Z 2008-10-15T20:44:56Z <p>Have the person(s) in question prepare a presentation to the rest of the group on the code for a representative module they have written, and let the Q&amp;A take care of it (trust me, it will, and if it's a good group, it shouldn't even get ugly).</p> http://stackoverflow.com/questions/205198/what-do-you-think-of-programmers-who-hold-part-time-programming-jobs/205397#205397 4 Answer by Jim for What do you think of programmers who hold part time programming jobs? Jim 2008-10-15T16:23:25Z 2008-10-15T16:23:25Z <p>There are two separate issues here as usually articulated by the employer/employment contract:</p> <p>1) <strong>Conflict of interest</strong>. The employer typically doesn't want you doing anything where there may be conflict regarding intellectual property, business practices, <em>etc</em>. This is a no-brainer - nobody will support someone carrying on outside activity that represents a conflict of interest and as an employer I would prohibit such activity.</p> <p>2) <strong>Conflict of commitment</strong>. Even if there is no conflict of interest, the employer often wants to ensure he has the exclusive benefit of your energies and time, whether in the office or outside. Whether or not this is reasonable is up to the individual, but I've seen lots of employment agreements that demand this exclusive focus. Personally, I would want exclusivity, but I would be prepared to pay for it. By the same token, I would ensure that employees have sufficient on-the-job time to engage in professional development, explore new technologies, and so on.</p> http://stackoverflow.com/questions/191368/how-can-i-set-and-restore-fpu-ctrl-registers/198658#198658 1 Answer by Jim for How can I set and restore FPU CTRL registers? Jim 2008-10-13T19:01:00Z 2008-10-13T19:01:00Z <pre><code>uses SysUtils; var SavedCW: Word; begin SavedCW := Get8087CW; try Set8087CW($027f); // Call .NET code here finally Set8087CW(SavedCW); end; end; </code></pre> http://stackoverflow.com/questions/198488/drag-drop-inside-an-application-and-to-another-application/198642#198642 1 Answer by Jim for Drag/Drop inside an Application AND to another Application Jim 2008-10-13T18:56:15Z 2008-10-13T18:56:15Z <p>If you want both VCL-style and Windows-style drag and drop, then use the Windows-style one for everything, including drag-and-drop within your own application.</p> http://stackoverflow.com/questions/106572/whats-a-good-alternative-to-the-included-terminal-program-on-os-x/141141#141141 0 Answer by Jim for What's a good alternative to the included Terminal program on OS X? Jim 2008-09-26T18:29:13Z 2008-09-26T18:29:13Z <p><a href="http://www.grepsoft.net/jellyfissh.html" rel="nofollow">JellyfiSSH</a> does a nice job of managing SSH connections, setting up tunnels, <em>etc.</em></p> http://stackoverflow.com/questions/944896/prevent-delphi-com-component-from-showing-messagebox/945379#945379 Comment by Jim on Prevent Delphi COM component from showing MessageBox() Jim 2009-06-03T20:18:15Z 2009-06-03T20:18:15Z That's all well and good, but if it's a COM component and it doesn't use the Forms unit, you don't even HAVE an Application reference. I have lots of in-process DLL COM servers, written in Delphi, that display no UI whatsoever. http://stackoverflow.com/questions/938260/comparing-two-matrices-in-matlab/938283#938283 Comment by Jim on Comparing two matrices in Matlab Jim 2009-06-02T15:01:28Z 2009-06-02T15:01:28Z Don't you need an absolute value here somewhere? http://stackoverflow.com/questions/926845/how-to-group-constant-strings-together-in-delphi/926940#926940 Comment by Jim on How to group constant strings together in Delphi Jim 2009-05-29T16:43:26Z 2009-05-29T16:43:26Z Agreed. Just for completeness' sake, there's neither code NOR runtime instantiation involved in the class const approach. http://stackoverflow.com/questions/921905/what-does-this-error-mean-in-x-code-debugger-window/921922#921922 Comment by Jim on what does this error mean in x-code debugger window? Jim 2009-05-28T16:53:29Z 2009-05-28T16:53:29Z Scroll to the right...&lt;g&gt; http://stackoverflow.com/questions/824662/registration-free-com-not-working-on-windows-server-2003/825911#825911 Comment by Jim on Registration-free COM not working on Windows Server 2003 Jim 2009-05-05T19:14:11Z 2009-05-05T19:14:11Z Bingo! I set the build settings in VS 2005 to NOT embed any manifest and now it works in Windows Server 2005. Thank you SO much!!! http://stackoverflow.com/questions/824662/registration-free-com-not-working-on-windows-server-2003/824908#824908 Comment by Jim on Registration-free COM not working on Windows Server 2003 Jim 2009-05-05T15:45:27Z 2009-05-05T15:45:27Z Actually, there was no &quot;SideBySide&quot; source created in the System event log in Windows Server 2003 (although I did see that in Windows XP months ago while I was figuring out how to do side-by-side, and got it wrong initially). As you can see from my original posting, the Event Source I get on Windows Server 2003 is &quot;Application Error&quot;. I wonder if that's a significant clue. http://stackoverflow.com/questions/824662/registration-free-com-not-working-on-windows-server-2003 Comment by Jim on Registration-free COM not working on Windows Server 2003 Jim 2009-05-05T13:19:35Z 2009-05-05T13:19:35Z The client application runs flawlessly on Windows Server 2003 against a registered version of the same COM server. I'll edit my question to reflect this. http://stackoverflow.com/questions/668247/uitouch-movement-speed-detection/668641#668641 Comment by Jim on UITouch movement speed detection Jim 2009-04-17T13:21:25Z 2009-04-17T13:21:25Z Nope...it's a constant you specify yourself. The closer it is to 1, the more weight you place on the newest value. Compare to an arithmetic average of n values. Each new value gets a weight of 1/n. For exponential, set lambda = 2/(n+1) where n is the equivalent arithmetic value. So the new value is weighted 2/(n+1) instead of 1/n, and then the existing moving average is scaled back by (1-lambda) = (n-1)/(n+1) and the two are added. Clearer? http://stackoverflow.com/questions/635982/what-happens-to-an-object-that-falls-out-of-scope-in-delphi/635990#635990 Comment by Jim on What Happens to an Object That Falls Out of Scope in Delphi? Jim 2009-03-12T15:37:14Z 2009-03-12T15:37:14Z Serves me right for typing so quickly and not re-reading. Like I don't use this pattern dozens of times every day &lt;sigh&gt;. I edited my response to move the creation outside the try, where it belongs. http://stackoverflow.com/questions/532350/tstringlist-as-field-of-object-does-not-work/532627#532627 Comment by Jim on TStringList as field of object does not work Jim 2009-02-11T13:29:03Z 2009-02-11T13:29:03Z Yes....and then sometime later you'll change the ancestor class to something other than TObject and have all kinds of nasty problems it'll take time to find. Best ALWAYS to call the inherited constructor as a defensive practicsc. http://stackoverflow.com/questions/450535/does-shoes-have-a-list-view-control Comment by Jim on Does Shoes have a list view control? Jim 2009-01-16T15:33:41Z 2009-01-16T15:33:41Z Thanks - I didn't want to do that initially as I didn't want to create noise for Ruby-only people.