User Larry - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T04:07:15Z http://stackoverflow.com/feeds/user/13054 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1868747/single-vs-double-datatypes/1868805#1868805 1 Answer by Larry for Single vs Double datatypes Larry 2009-12-08T18:09:56Z 2009-12-08T18:09:56Z <p>From <a href="http://msdn.microsoft.com/en-us/library/aa289513%28VS.71%29.aspx" rel="nofollow">this</a> .net article</p> <blockquote> <p>Data Type Width</p> <p>The most efficient data types are those that use the native data width of the run-time platform. On current platforms, the data width is 32 bits, for both the computer and the operating system.</p> <p>Consequently, Integer is currently the most efficient data type in Visual Basic .NET. Next best are Long, Short, and Byte, in that order of efficiency. You can improve the performance of Short and Byte by turning off integer overflow checking, for example by setting the RemoveIntegerChecks property, but this incurs the risk of incorrect calculations due to undetected overflows. You cannot toggle this checking on and off during run time; you can only set its value for the next build of your application.</p> <p>If you need fractional values, the best choice is Double, because the floating-point processors of current platforms perform all operations in double precision. Next best are Single and Decimal, in that order of efficiency.</p> </blockquote> http://stackoverflow.com/questions/1838019/approach-for-site-down-for-maintenance/1838069#1838069 8 Answer by Larry for approach for "site down for maintenance" Larry 2009-12-03T06:32:32Z 2009-12-03T06:32:32Z <p>Take a look at the routing <a href="http://docs.kohanaphp.com/general/routing" rel="nofollow">documentation</a>. You should be able to use a regular expression that redirects any uri to a specific controller/action. The only question left would be how to turn that rule on/off. </p> http://stackoverflow.com/questions/1799144/is-it-possible-to-determine-the-location-of-a-r2build-script-from-within-the-scri 0 Is it possible to determine the location of a r2build script from within the script? Larry 2009-11-25T18:48:50Z 2009-11-30T10:06:18Z <p>My project structure looks like this</p> <pre><code>&lt;base_dir&gt;\build\release.r2p &lt;base_dir&gt;\build\thirdparty\... &lt;base_dir&gt;\src\... &lt;basd_dir&gt;\release\... </code></pre> <p>And my build script does stuff like:</p> <ul> <li>delete <code>&lt;base_dir&gt;\release</code></li> <li>copy <code>&lt;base_dir&gt;\build\thirdparty</code> to <code>&lt;base_dir&gt;\release</code></li> <li>compile code and output to <code>&lt;base_dir&gt;\release</code></li> </ul> <p>I need to change the location of <code>&lt;base_dir&gt;</code> occasionally and I would like the r2b script to just work when I do this. Right now I have to go in and manually update <code>&lt;base_dir&gt;</code> when it changes.</p> <p>Is it possible to reference files relative to the r2p file location? This would allow me to do something like:</p> <ul> <li>delete <code>&lt;r2p_script_dir&gt;\..\release</code></li> <li>copy <code>&lt;r2p_script_dir&gt;\..\build\thirdparty</code> to <code>&lt;r2p_script_dir&gt;\..\release</code></li> <li>compile code and output to <code>&lt;r2p_script_dir&gt;\..\release</code></li> </ul> http://stackoverflow.com/questions/1743367/are-there-any-good-pascal-script-resources-documentation 0 Are there any good Pascal Script resources/documentation ? Larry 2009-11-16T16:44:49Z 2009-11-29T19:05:18Z <p>I started playing around with Pascal Script today and I cannot find any good documentation. I found these (<a href="http://devcenter.remobjects.com/articles/?id=%7B2FFC1EE9-F18D-4B11-9DE4-1BA0A79D0D04%7D" rel="nofollow">one</a>, <a href="http://devcenter.remobjects.com/articles/?id=%7BB2CAB2FE-A831-452E-AF7A-6E2C6021D489%7D" rel="nofollow">two</a>) articles. The are helpful but they are just examples.</p> <p><strong>edit</strong>: Separated this into two questions. New question is <a href="http://stackoverflow.com/questions/1743643/how-can-i-get-pascal-script-to-recognize-the-create-and-free-functions-when-i">here</a>.</p> http://stackoverflow.com/questions/1743367/are-there-any-good-pascal-script-resources-documentation/1816435#1816435 0 Answer by Larry for Are there any good Pascal Script resources/documentation ? Larry 2009-11-29T19:05:18Z 2009-11-29T19:05:18Z <p>I decided to add some documentation of my own. Its not very thorough but it should help out anyone who is new to Pascal Script. </p> <p>Heres the <a href="http://lawrencebarsanti.wordpress.com/2009/11/28/introduction-to-pascal-script" rel="nofollow">link</a>.</p> http://stackoverflow.com/questions/1183158/is-it-possible-to-use-the-drupal-api-to-get-a-list-of-users 0 Is it possible to use the Drupal api to get a list of users? Larry 2009-07-25T21:48:39Z 2009-11-20T17:21:51Z <p>I would like to get a list of all the users who have been assigned a certain role. I could write my own SQL but I would like to use the api as much as possible.</p> http://stackoverflow.com/questions/387453/best-way-to-show-code-snippets-in-word 2 Best way to show code snippets in word? Larry 2008-12-22T21:45:26Z 2009-11-19T00:32:22Z <p>Does anyone know a good way to display code in Microsoft Word documents? </p> <p>I have tried to include code as regular text which looks awful and gets in the way when editing regular text. I have also tried inserting objects, a WordPad document and Text Box, into the document then putting the code inside those objects. The code looks much better and is easier to avoid while editing the rest of the text. However, these objects can only span one page which makes editing a nightmare when several pages of code need to be added.</p> <p>Lastly, I know that there are much better editors/formats that have no problem handling this but I am stuck working with MS word.</p> http://stackoverflow.com/questions/1743643/how-can-i-get-pascal-script-to-recognize-the-create-and-free-functions-when-i 1 How can I get Pascal Script to recognize the 'create' and 'free' functions when importing a custom class? Larry 2009-11-16T17:28:51Z 2009-11-16T18:35:54Z <p>I am having a problem with the example from this <a href="http://devcenter.remobjects.com/articles/?id=%7BB2CAB2FE-A831-452E-AF7A-6E2C6021D489%7D" rel="nofollow">article</a>. The article explains how to import your own classes so they can be called from a Pascal Script. I am importing my custom class but cannot get Pascal Script to recognize the 'Create' and 'Free' functions. </p> <p>My plugin:</p> <pre><code>TMyPsPlugin = class public procedure PrintMessage(const AMessage: String); end; procedure TMyPsPlugin.PrintMessage(const AMessage: String); begin ShowMessage(AMessage); end; </code></pre> <p>My app:</p> <pre><code>procedure TForm1.FormCreate(Sender: TObject); var Plugin: TPSPlugin; begin Plugin := TPSImport_MyPsPlugin.Create(Self); TPSPluginItem(ps.Plugins.Add).Plugin := Plugin; end; procedure TForm1.bCompileClick(Sender: TObject); begin ps.Script.Text := mScript.Text; if ps.Compile then begin if ps.Execute then ShowMessage('Done.') else ShowMessage('Execution Error: ' + Ps.ExecErrorToString); end else HandleError; end; </code></pre> <p>My Script:</p> <pre><code>program test; var Plugin: TMyPsPlugin; begin Plugin := TMyPsPlugin.Create; Plugin.PrintMessage('Hello'); Plugin.Free; end. </code></pre> <p>Error Messages:</p> <pre><code>[Error] (5:25): Unknown identifier 'Create' [Error] (7:10): Unknown identifier 'FREE' </code></pre> http://stackoverflow.com/questions/1650934/cannot-get-the-remote-debugger-for-delphi-2007-to-work-correctly 1 Cannot get the remote debugger for Delphi 2007 to work correctly? Larry 2009-10-30T16:36:21Z 2009-10-30T17:18:20Z <p>I followed these <a href="http://delphi.wikia.com/wiki/Remote%5FDebugger" rel="nofollow">instructions</a> while trying to get remote debugging working with Delphi 2007. After completing all the steps, the remote debugger is half working. </p> <p>It is able to launch and halt the application but the break points I set do not work. The automatic break point (at line Application.Initialize;) is working but it goes right to the CPU window. The debugging information appears to be missing.</p> <p>I triple checked, both 'Include TD32 debug info' and 'Include remote debug symbols' are checked, a clean build was performed, and the correct files have been moved to the remote machine.</p> <p>What am I missing? </p> <p>Any help would be greatly appreciated.</p> http://stackoverflow.com/questions/1607143/mysql-group-by-intervals-in-a-date-range/1607228#1607228 0 Answer by Larry for MySQL group by intervals in a date range Larry 2009-10-22T13:31:28Z 2009-10-22T14:06:50Z <p>You may be able to do this using integer division. Not sure of the performance.</p> <p>Let I be your desired interval in seconds.</p> <pre><code>SELECT SUM(bytes), ((stime - X) DIV I) as interval FROM table WHERE (stime &gt; X) and (stime &lt; Y) GROUP BY interval Example, let X = 1500 and I = 10 stime = 1503 -&gt; (1503 - 1500) DIV 10 = 0 stime = 1507 -&gt; (1507 - 1500) DIV 10 = 0 stime = 1514 -&gt; (1514 - 1500) DIV 10 = 1 stime = 1523 -&gt; (1523 - 1500) DIV 10 = 2 </code></pre> http://stackoverflow.com/questions/1590434/is-it-possible-to-run-an-application-as-administrator-from-the-delphi-ide 2 Is it possible to run an application as Administrator from the Delphi IDE Larry 2009-10-19T18:56:04Z 2009-10-19T21:26:03Z <p>I am trying to debug an application in Delphi 2007 on a Vista machine. The application was originally written for XP so it must be run with administrator privileges. I know that I could put some information into the manifest or update the code but I am looking for a quick fix that can be used in all my projects. </p> <p>Does anyone know if there is an easy way to get Delphi to launch an application as administrator in Vista?</p> http://stackoverflow.com/questions/444787/postmessage-occasionally-loses-a-message 0 PostMessage occasionally loses a message Larry 2009-01-14T21:35:58Z 2009-10-19T02:12:26Z <p>I wrote a multi-threaded windows application where thread: <br> A – is a windows form that handles user interaction and process the data from B. <br> B – occasionally generates data and passes it two A. </p> <p>A thread safe queue is used to pass the data from thread B to A. The enqueue and dequeue functions are guarded using a windows critical section objects. </p> <p>If the queue is empty when the enqueue function is called, the function will use PostMessage to tell A that there is data in the queue. The function checks to make sure the call to PostMessage is executed successfully and repeatedly calls PostMessage if it is not successful (PostMessage has yet to fail). </p> <p>This worked well for quite some time until one specific computer started to lose the occasional message. By lose I mean that, PostMessage returns successfully in B but A never receives the message. This causes the software to appear frozen. </p> <p>I have already come up with a couple acceptable workarounds. I am interesting in knowing why windows is loosing these messages and why this is only happening on the one computer. </p> <p>Here is the relevant portions of the code.</p> <pre><code>// Only called by B procedure TSharedQueue.Enqueue(AItem: TSQItem); var B: boolean; begin EnterCriticalSection(FQueueLock); if FCount &gt; 0 then begin FLast.FNext := AItem; FLast := AItem; end else begin FFirst := AItem; FLast := AItem; end; if (FCount = 0) or (FCount mod 10 = 0) then // just in case a message is lost repeat B := PostMessage(FConsumer, SQ_HAS_DATA, 0, 0); if not B then Sleep(1000); // this line of code has never been reached until B; Inc(FCount); LeaveCriticalSection(FQueueLock); end; // Only called by A function TSharedQueue.Dequeue: TSQItem; begin EnterCriticalSection(FQueueLock); if FCount &gt; 0 then begin Result := FFirst; FFirst := FFirst.FNext; Result.FNext := nil; Dec(FCount); end else Result := nil; LeaveCriticalSection(FQueueLock); end; // procedure called when SQ_HAS_DATA is received procedure TfrmMonitor.SQHasData(var AMessage: TMessage); var Item: TSQItem; begin while FMessageQueue.Count &gt; 0 do begin Item := FMessageQueue.Dequeue; // use the Item somehow end; end; </code></pre> http://stackoverflow.com/questions/1573646/pdo-in-php-how-to-improve-this-pdo-mysql-code/1573728#1573728 4 Answer by Larry for PDO in PHP, how to improve this PDO mysql code Larry 2009-10-15T17:01:44Z 2009-10-15T17:01:44Z <pre><code>$myval = "somevalue"; $row = $stmt-&gt;fetch(PDO::FETCH_ASSOC); if (!$row) { //no record matches //BLOCK A CODE HERE } else if ($myval == $row['val']) { //myval is the same as db //BLOCK B CODE HERE } else { //myval is different from db //BLOCK C CODE HERE } </code></pre> http://stackoverflow.com/questions/147719/delphi-ifdebug-equivalent/1572604#1572604 2 Answer by Larry for Delphi #IF(DEBUG) equivalent? Larry 2009-10-15T14:06:26Z 2009-10-15T14:06:26Z <p>DebugHook is set if an application is running under the IDE debugger. Not the same as a compiler directive but still pretty useful. For example:</p> <pre><code>ReportMemoryLeaksOnShutdown := DebugHook &lt;&gt; 0; // show memory leaks when debugging </code></pre> http://stackoverflow.com/questions/1562731/will-i-run-into-performance-issues-if-i-use-a-blob-field-as-primary-key-in-sqlite 0 Will I run into performance issues if I use a blob field as primary key in SQLite? Larry 2009-10-13T20:28:25Z 2009-10-13T21:53:39Z <p>I have a sqlite database where all the primary keys are GUIDs. Currently they are stored as fixed length strings but I want to store them as blobs because it simplifies the code for storing and retrieving data. I converted part of the database and everything is functioning as expected. However, I'm not sure if I will run into performance issues. </p> <p>For example, would a statement like this be faster on strings than blobs? </p> <pre><code>SELECT * FROM table1 t1, table2 t2 WHERE t1.id = t2.parent_id </code></pre> <p>My intuitions says no, but that doesn't really mean anything.</p> http://stackoverflow.com/questions/74519/using-7-zip-from-delphi 2 Using 7-Zip from Delphi? Larry 2008-09-16T16:57:03Z 2009-10-12T11:08:35Z <p>I would like to use the 7-Zip DLLs from Delphi but have not been able to find decent documentation or examples. Does anyone know how to use the 7-Zip DLLs from Delphi?</p> http://stackoverflow.com/questions/1548909/delphi-most-successful-applications-developed/1548920#1548920 28 Answer by Larry for Delphi - most successful applications developed Larry 2009-10-10T19:59:19Z 2009-10-10T19:59:19Z <p><a href="http://delphi.wikia.com/wiki/Good%5FQuality%5FApplications%5FBuilt%5FWith%5FDelphi" rel="nofollow">http://delphi.wikia.com/wiki/Good_Quality_Applications_Built_With_Delphi</a></p> http://stackoverflow.com/questions/1548442/i-know-how-to-program-now-how-do-i-learn-to-design/1548836#1548836 0 Answer by Larry for I know how to program. Now how do I learn to design? Larry 2009-10-10T19:21:41Z 2009-10-10T19:21:41Z <blockquote> <p>Often I'll write a bigger program (say, a few hundred of lines) only to realize that what I wrote is neither elegant nor maintainable.</p> </blockquote> <p><strong>Fix it!</strong> </p> <p>Go back and fix your existing programs so they become elegant an maintainable. Pick a specific problem (i.e. every time I add a feature I break some working code) and figure out how to resolve the issue (i.e. add unit tests). Once you apply the new technique reevaluate your code (i.e. do you feel comfortable adding new features now) as well as the technique you used (i.e. did it help solve the original problem).</p> http://stackoverflow.com/questions/1521821/php-simple-caching-technique-for-small-mid-size-websites/1521884#1521884 0 Answer by Larry for Php simple caching technique for small-mid size websites Larry 2009-10-05T19:17:25Z 2009-10-05T19:17:25Z <p>You can look at the caching in <a href="http://book.cakephp.org/view/325/View-Caching" rel="nofollow">CakePHP</a>. I doubt that you will be able to separate it from the frame work but it should help you to understand how to cache dynamic content.</p> http://stackoverflow.com/questions/1512654/sql-insert-if-doesnt-exist-otherwise-completely-different-update/1512684#1512684 0 Answer by Larry for Sql insert if doesnt exist, otherwise (completely different) update Larry 2009-10-03T03:09:36Z 2009-10-03T03:09:36Z <p><a href="http://www.sqlite.org/c3ref/changes.html" rel="nofollow">sqlite3_changes</a> will tell you how many rows were affected by the last statement. Try the UPDATE first, if it changes 0 rows do the INSERT.</p> http://stackoverflow.com/questions/1510141/php-read-last-line-from-file/1510277#1510277 3 Answer by Larry for PHP: read last line from file Larry 2009-10-02T15:31:31Z 2009-10-02T16:25:15Z <p>If you know the upper bound of line length you could do something like this.</p> <pre><code>$maxLength = 1024; $fp = fopen('somefile.txt', 'r'); fseek($fp, -$maxLength , SEEK_END); $fewLines = explode("\n", fgets($fp, $maxLength)); $lastLine = $fewLines[count($fewLines) - 1]; </code></pre> <p><strong>In response to the edit</strong>: fopen just acquires a handle to the file (i.e. make sure it exists, process has permission, lets os know a process is using the file, etc...). In this example only 1024 characters from the file will be read into memory. </p> http://stackoverflow.com/questions/1505246/dijit-menu-catch-menu-positon-and-edit-menu-after-creation/1505282#1505282 0 Answer by Larry for [dijit menu] catch menu positon, and edit menu after creation Larry 2009-10-01T17:20:42Z 2009-10-01T17:20:42Z <p>Each menu has a property domNode that is linked to the top-level DOM node used to display the menu. Check out the <a href="http://api.dojotoolkit.org/jsdoc/1.3.2/dijit.Menu" rel="nofollow">api</a>. </p> http://stackoverflow.com/questions/1505211/php-jsonencode-jsondecode-of-simplexml-object/1505241#1505241 0 Answer by Larry for PHP, json_encode, json_decode of SimpleXML Object Larry 2009-10-01T17:10:03Z 2009-10-01T17:10:03Z <p>If an object is converted to an array, the result is an array whose elements are the object's properties. </p> <pre><code>$asArray = (array)$myObj; echo $asArray['@attribute']; </code></pre> http://stackoverflow.com/questions/1503745/getting-rid-of-duplicate-results-in-mysql-query-when-using-union/1503832#1503832 1 Answer by Larry for Getting rid of duplicate results in MySQL query when using UNION Larry 2009-10-01T13:03:50Z 2009-10-01T13:03:50Z <p>Not sure if this would be a huge performance hit but you could try</p> <pre><code>SELECT item_field_1, item_field_2, ..., max(date) as date FROM (the query you posted) GROUP BY item_field_1, item_field_2, ... </code></pre> http://stackoverflow.com/questions/1497228/splitting-a-form-into-tabbed-pages-using-dojo/1497961#1497961 0 Answer by Larry for Splitting a form into tabbed pages using dojo Larry 2009-09-30T13:02:22Z 2009-09-30T13:02:22Z <p>Have you tried the following approach?</p> <pre><code>&lt;form id="${cid}form" dojoType="dijit.form.Form" onSubmit="return false"&gt; &lt;div id="mainTabContainer" dojoType="dijit.layout.TabContainer" region="center" &gt; &lt;div class="tabContentSection" dojoType="dijit.layout.ContentPane" title="Section1" selected="true"&gt; ... &lt;/div&gt; ... &lt;/div&gt; &lt;/form&gt; </code></pre> <p>I am guessing that the parser is failing to build the TabContainer because it expect to see a bunch of ContentPanes but is finding a Form. The form should function the same once moved outside the TabContainer.</p> http://stackoverflow.com/questions/1489715/how-do-i-submit-data-with-dojo-datetextbox-after-selecting-a-date/1492644#1492644 0 Answer by Larry for How do I submit data with Dojo DateTextBox after selecting a date. Larry 2009-09-29T13:41:47Z 2009-09-29T13:41:47Z <p>Change <code>dojo.byId('timespan').submit();</code> to <code>dijit.byId('timespan').submit();</code></p> <p>For an explanation read <a href="http://www.dojotoolkit.org/book/dojo-book-0-9/part-3-programmatic-dijit-and-dojo/functions-used-everywhere/dojo-byid" rel="nofollow">this</a>.</p> http://stackoverflow.com/questions/1492431/return-all-fields-and-distinct-rows/1492489#1492489 0 Answer by Larry for Return all Fields and Distinct Rows Larry 2009-09-29T13:19:26Z 2009-09-29T13:19:26Z <p>I don't think you can do this because it doesn't really make sense.</p> <pre><code>name | address | city | etc... abc | 123 | def | ... abc | 123 | hij | ... </code></pre> <p>if you were to include city, but not have it as part of the distinct clause, the value of city would be unpredictable unless you did something like Max(city).</p> http://stackoverflow.com/questions/1492411/sql-server-select-from-stored-procedure/1492433#1492433 1 Answer by Larry for SQL Server - SELECT FROM stored procedure Larry 2009-09-29T13:12:04Z 2009-09-29T13:12:04Z <p>It sounds like you might just need to use a <a href="http://msdn.microsoft.com/en-us/library/aa258253%28SQL.80%29.aspx" rel="nofollow">view</a>. A view allows a query to be represented as a table so it, the view, can be queried.</p> http://stackoverflow.com/questions/1465542/cant-delete-a-folder-using-deletefile-command/1465833#1465833 3 Answer by Larry for cant delete a folder using deletefile command Larry 2009-09-23T12:59:54Z 2009-09-23T12:59:54Z <p>You can use the function SHFileOperation from the Windows API. A reference to it is defined in ShellApi. However, I would recommend looking into the <a href="http://sourceforge.net/projects/jcl/" rel="nofollow">Jedi Code Library</a>. The unit JclFileUtils contains a DeleteDirectory function which is much easier to use; it even has the option to send the deleted directory to the recycle bin.</p> http://stackoverflow.com/questions/1459626/unterminated-string-literal/1459898#1459898 2 Answer by Larry for unterminated string literal Larry 2009-09-22T12:50:35Z 2009-09-22T12:50:35Z <p>The following code will get rid of all \r and \n characters.</p> <pre><code>preg_replace('/[\r\n]+/', "", $stringFromDB) </code></pre> http://stackoverflow.com/questions/1868747/single-vs-double-datatypes/1868805#1868805 Comment by Larry on Single vs Double datatypes Larry 2009-12-10T13:05:05Z 2009-12-10T13:05:05Z Yes, according to the article, from an operations point of view (i.e. multiplying, dividing, etc...) doubles should be more efficient. Of course, as many others have pointed out, from a memory usage point of view Single is better. More importantly, you mention that customers have noticed the loss in precision, which implies that they want higher precision. So, the question is not which is better? It is, where/why are my doubles being cast to singles? http://stackoverflow.com/questions/1837546/how-would-you-make-this-switch-statement-as-fast-as-possible/1837570#1837570 Comment by Larry on How would you make this switch statement as fast as possible? Larry 2009-12-03T04:52:01Z 2009-12-03T04:52:01Z +1 This was my first thought. @Dan are you sure that the strings are all equally likely. I don't know your project but I would assume that NYSE and NASDAQ are going to be searched much more than ARCA (which returned the Alberta roofing contractors association when googled). http://stackoverflow.com/questions/1743643/how-can-i-get-pascal-script-to-recognize-the-create-and-free-functions-when-i/1744007#1744007 Comment by Larry on How can I get Pascal Script to recognize the 'create' and 'free' functions when importing a custom class? Larry 2009-11-16T18:48:57Z 2009-11-16T18:48:57Z Thank you. I added these two functions to the generated code and it worked. Note: I had to add this BEFORE the generated functions SIRegister_TMyPsPlugin and RIRegister_TMyPsPlugin were called. http://stackoverflow.com/questions/1743643/how-can-i-get-pascal-script-to-recognize-the-create-and-free-functions-when-i/1743776#1743776 Comment by Larry on How can I get Pascal Script to recognize the 'create' and 'free' functions when importing a custom class? Larry 2009-11-16T18:08:24Z 2009-11-16T18:08:24Z Sorry if my code was confusing. I am using the generated class. I added the additional code to show this. http://stackoverflow.com/questions/1743367/are-there-any-good-pascal-script-resources-documentation/1743696#1743696 Comment by Larry on Are there any good Pascal Script resources/documentation ? Larry 2009-11-16T17:56:15Z 2009-11-16T17:56:15Z Thanks. This helped solve my problem. In Pascal Script the methods are called RegisterMethod, RegisterConstructor, etc... Also, Pascal Script comes with a tool called Unit Importer that builds the register code for you. Unfortunately, it does not add the Create and Free methods so I just added them myself. Lastly, I voted up this answer but if you repost it under the new question I'll accept it. http://stackoverflow.com/questions/1650934/cannot-get-the-remote-debugger-for-delphi-2007-to-work-correctly/1651169#1651169 Comment by Larry on Cannot get the remote debugger for Delphi 2007 to work correctly? Larry 2009-10-30T17:32:33Z 2009-10-30T17:32:33Z Very detailed. I'm sure this will help anyone who stumbles onto this question in the future. http://stackoverflow.com/questions/1650934/cannot-get-the-remote-debugger-for-delphi-2007-to-work-correctly/1651025#1651025 Comment by Larry on Cannot get the remote debugger for Delphi 2007 to work correctly? Larry 2009-10-30T17:31:35Z 2009-10-30T17:31:35Z thanks. No mention of the .rsm files in the article. http://stackoverflow.com/questions/1590434/is-it-possible-to-run-an-application-as-administrator-from-the-delphi-ide/1590645#1590645 Comment by Larry on Is it possible to run an application as Administrator from the Delphi IDE Larry 2009-10-19T19:57:33Z 2009-10-19T19:57:33Z This is a good point. However, in my situation the code is going to run on a locked-down tablet pc running Window 2000 or XP embedded. My dev box runs Vista and I just wanted a quick and dirty way to launch the apps. http://stackoverflow.com/questions/1562731/will-i-run-into-performance-issues-if-i-use-a-blob-field-as-primary-key-in-sqlite/1562829#1562829 Comment by Larry on Will I run into performance issues if I use a blob field as primary key in SQLite? Larry 2009-10-14T14:18:55Z 2009-10-14T14:18:55Z @Abel thanks for the detailed response. @finnw thanks for the correction. http://stackoverflow.com/questions/1503745/getting-rid-of-duplicate-results-in-mysql-query-when-using-union/1503832#1503832 Comment by Larry on Getting rid of duplicate results in MySQL query when using UNION Larry 2009-10-01T13:32:59Z 2009-10-01T13:32:59Z If I understand this correctly, you get duplicate items when they appear in both the reactions and wishlist tables. This will give you the newest date when an item appears in both tables and have no affect when it appears in only one of the tables. Make sure not to include date in the 'group by'. http://stackoverflow.com/questions/1497358/containable-on-hasmany-relationship Comment by Larry on containable on hasMany relationship Larry 2009-09-30T13:28:24Z 2009-09-30T13:28:24Z Does Post belongTo User? Maybe you need to define the relationships in both directions for everything to work. http://stackoverflow.com/questions/1486672/delphi-searchtext-issue Comment by Larry on Delphi SearchText Issue Larry 2009-09-28T13:29:50Z 2009-09-28T13:29:50Z Just a guess but the replace text might be truncated when inserted. The selected region is shorter than the new string. SelLength := length(inSearch); // 13 chars SelText := InReplace; // 19 chars http://stackoverflow.com/questions/1408663/cakephp-can-model-findall-return-results-without-model-name/1409281#1409281 Comment by Larry on Cakephp: can Model->find('all') return results without model name Larry 2009-09-11T20:20:00Z 2009-09-11T20:20:00Z Thanks. I was able to achieve my desired functionality by defining the afterFind method and flattening the results there. foreach($results as $index =&gt; $values) { $results[$index] = $values['ModelName']; } http://stackoverflow.com/questions/1147549/how-should-i-write-my-where-clause-in-sql-server-for-the-following-case/1147571#1147571 Comment by Larry on How should I write my WHERE clause in SQL Server for the following case? Larry 2009-07-18T13:45:45Z 2009-07-18T13:45:45Z you have an extra )... it should be WHERE Date = (SELECT MAX(MyDate) FROM MyTable WHERE MyDate &lt;= '2009-02-19') http://stackoverflow.com/questions/1125580/why-does-flock-occasionally-take-a-long-time-on-windows-ntfs/1125620#1125620 Comment by Larry on Why does flock occasionally take a long time on Windows / NTFS? Larry 2009-07-14T14:21:28Z 2009-07-14T14:21:28Z Its closed after the object is serialized back to the file in the destructor.