User Larry - Stack Overflowmost recent 30 from stackoverflow.com2009-12-19T04:07:15Zhttp://stackoverflow.com/feeds/user/13054http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1868747/single-vs-double-datatypes/1868805#18688051Answer by Larry for Single vs Double datatypesLarry2009-12-08T18:09:56Z2009-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#18380698Answer by Larry for approach for "site down for maintenance"Larry2009-12-03T06:32:32Z2009-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-scri0Is it possible to determine the location of a r2build script from within the script?Larry2009-11-25T18:48:50Z2009-11-30T10:06:18Z
<p>My project structure looks like this</p>
<pre><code><base_dir>\build\release.r2p
<base_dir>\build\thirdparty\...
<base_dir>\src\...
<basd_dir>\release\...
</code></pre>
<p>And my build script does stuff like:</p>
<ul>
<li>delete <code><base_dir>\release</code></li>
<li>copy <code><base_dir>\build\thirdparty</code> to <code><base_dir>\release</code></li>
<li>compile code and output to <code><base_dir>\release</code></li>
</ul>
<p>I need to change the location of <code><base_dir></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><base_dir></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><r2p_script_dir>\..\release</code></li>
<li>copy <code><r2p_script_dir>\..\build\thirdparty</code> to <code><r2p_script_dir>\..\release</code></li>
<li>compile code and output to <code><r2p_script_dir>\..\release</code></li>
</ul>
http://stackoverflow.com/questions/1743367/are-there-any-good-pascal-script-resources-documentation0Are there any good Pascal Script resources/documentation ?Larry2009-11-16T16:44:49Z2009-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#18164350Answer by Larry for Are there any good Pascal Script resources/documentation ?Larry2009-11-29T19:05:18Z2009-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-users0Is it possible to use the Drupal api to get a list of users?Larry2009-07-25T21:48:39Z2009-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-word2Best way to show code snippets in word?Larry2008-12-22T21:45:26Z2009-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-i1How can I get Pascal Script to recognize the 'create' and 'free' functions when importing a custom class?Larry2009-11-16T17:28:51Z2009-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-correctly1Cannot get the remote debugger for Delphi 2007 to work correctly?Larry2009-10-30T16:36:21Z2009-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#16072280Answer by Larry for MySQL group by intervals in a date rangeLarry2009-10-22T13:31:28Z2009-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 > X) and (stime < Y)
GROUP BY interval
Example, let X = 1500 and I = 10
stime = 1503 -> (1503 - 1500) DIV 10 = 0
stime = 1507 -> (1507 - 1500) DIV 10 = 0
stime = 1514 -> (1514 - 1500) DIV 10 = 1
stime = 1523 -> (1523 - 1500) DIV 10 = 2
</code></pre>
http://stackoverflow.com/questions/1590434/is-it-possible-to-run-an-application-as-administrator-from-the-delphi-ide2Is it possible to run an application as Administrator from the Delphi IDELarry2009-10-19T18:56:04Z2009-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-message0PostMessage occasionally loses a messageLarry2009-01-14T21:35:58Z2009-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 > 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 > 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 > 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#15737284Answer by Larry for PDO in PHP, how to improve this PDO mysql codeLarry2009-10-15T17:01:44Z2009-10-15T17:01:44Z<pre><code>$myval = "somevalue";
$row = $stmt->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#15726042Answer by Larry for Delphi #IF(DEBUG) equivalent?Larry2009-10-15T14:06:26Z2009-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 <> 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-sqlite0Will I run into performance issues if I use a blob field as primary key in SQLite?Larry2009-10-13T20:28:25Z2009-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-delphi2Using 7-Zip from Delphi?Larry2008-09-16T16:57:03Z2009-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#154892028Answer by Larry for Delphi - most successful applications developedLarry2009-10-10T19:59:19Z2009-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#15488360Answer by Larry for I know how to program. Now how do I learn to design?Larry2009-10-10T19:21:41Z2009-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#15218840Answer by Larry for Php simple caching technique for small-mid size websitesLarry2009-10-05T19:17:25Z2009-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#15126840Answer by Larry for Sql insert if doesnt exist, otherwise (completely different) updateLarry2009-10-03T03:09:36Z2009-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#15102773Answer by Larry for PHP: read last line from fileLarry2009-10-02T15:31:31Z2009-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#15052820Answer by Larry for [dijit menu] catch menu positon, and edit menu after creationLarry2009-10-01T17:20:42Z2009-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#15052410Answer by Larry for PHP, json_encode, json_decode of SimpleXML ObjectLarry2009-10-01T17:10:03Z2009-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#15038321Answer by Larry for Getting rid of duplicate results in MySQL query when using UNIONLarry2009-10-01T13:03:50Z2009-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#14979610Answer by Larry for Splitting a form into tabbed pages using dojoLarry2009-09-30T13:02:22Z2009-09-30T13:02:22Z<p>Have you tried the following approach?</p>
<pre><code><form id="${cid}form" dojoType="dijit.form.Form" onSubmit="return false">
<div id="mainTabContainer" dojoType="dijit.layout.TabContainer" region="center" >
<div class="tabContentSection" dojoType="dijit.layout.ContentPane" title="Section1" selected="true">
...
</div>
...
</div>
</form>
</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#14926440Answer by Larry for How do I submit data with Dojo DateTextBox after selecting a date.Larry2009-09-29T13:41:47Z2009-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#14924890Answer by Larry for Return all Fields and Distinct RowsLarry2009-09-29T13:19:26Z2009-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#14924331Answer by Larry for SQL Server - SELECT FROM stored procedureLarry2009-09-29T13:12:04Z2009-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#14658333Answer by Larry for cant delete a folder using deletefile commandLarry2009-09-23T12:59:54Z2009-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#14598982Answer by Larry for unterminated string literalLarry2009-09-22T12:50:35Z2009-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#1868805Comment by Larry on Single vs Double datatypesLarry2009-12-10T13:05:05Z2009-12-10T13:05:05ZYes, 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#1837570Comment by Larry on How would you make this switch statement as fast as possible?Larry2009-12-03T04:52:01Z2009-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#1744007Comment by Larry on How can I get Pascal Script to recognize the 'create' and 'free' functions when importing a custom class?Larry2009-11-16T18:48:57Z2009-11-16T18:48:57ZThank 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#1743776Comment by Larry on How can I get Pascal Script to recognize the 'create' and 'free' functions when importing a custom class?Larry2009-11-16T18:08:24Z2009-11-16T18:08:24ZSorry 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#1743696Comment by Larry on Are there any good Pascal Script resources/documentation ?Larry2009-11-16T17:56:15Z2009-11-16T17:56:15ZThanks. 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#1651169Comment by Larry on Cannot get the remote debugger for Delphi 2007 to work correctly?Larry2009-10-30T17:32:33Z2009-10-30T17:32:33ZVery 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#1651025Comment by Larry on Cannot get the remote debugger for Delphi 2007 to work correctly?Larry2009-10-30T17:31:35Z2009-10-30T17:31:35Zthanks. 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#1590645Comment by Larry on Is it possible to run an application as Administrator from the Delphi IDELarry2009-10-19T19:57:33Z2009-10-19T19:57:33ZThis 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#1562829Comment by Larry on Will I run into performance issues if I use a blob field as primary key in SQLite?Larry2009-10-14T14:18:55Z2009-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#1503832Comment by Larry on Getting rid of duplicate results in MySQL query when using UNIONLarry2009-10-01T13:32:59Z2009-10-01T13:32:59ZIf 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-relationshipComment by Larry on containable on hasMany relationshipLarry2009-09-30T13:28:24Z2009-09-30T13:28:24ZDoes Post belongTo User? Maybe you need to define the relationships in both directions for everything to work.http://stackoverflow.com/questions/1486672/delphi-searchtext-issueComment by Larry on Delphi SearchText IssueLarry2009-09-28T13:29:50Z2009-09-28T13:29:50ZJust 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#1409281Comment by Larry on Cakephp: can Model->find('all') return results without model nameLarry2009-09-11T20:20:00Z2009-09-11T20:20:00ZThanks. I was able to achieve my desired functionality by defining the afterFind method and flattening the results there.
foreach($results as $index => $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#1147571Comment by Larry on How should I write my WHERE clause in SQL Server for the following case? Larry2009-07-18T13:45:45Z2009-07-18T13:45:45Zyou have an extra )... it should be
WHERE Date = (SELECT MAX(MyDate) FROM MyTable WHERE MyDate <= '2009-02-19')
http://stackoverflow.com/questions/1125580/why-does-flock-occasionally-take-a-long-time-on-windows-ntfs/1125620#1125620Comment by Larry on Why does flock occasionally take a long time on Windows / NTFS?Larry2009-07-14T14:21:28Z2009-07-14T14:21:28ZIts closed after the object is serialized back to the file in the destructor.