User Gerry - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T04:35:18Z http://stackoverflow.com/feeds/user/22545 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1920140/delphi-records-in-classes/1924424#1924424 0 Answer by Gerry for Delphi: Records in Classes Gerry 2009-12-17T20:39:31Z 2009-12-17T20:45:51Z <p>The reason it has been changed is that it was a compiler bug. The fact that it compiled didn't guarantee that it would work. It would fail as soon as a Getter was added to the property</p> <pre><code>unit Unit2; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls; type TForm2 = class(TForm) Button1: TButton; procedure Button1Click(Sender: TObject); private FPoint: TPoint; function GetPoint: TPoint; procedure SetPoint(const Value: TPoint); { Private declarations } public { Public declarations } property Point : TPoint read GetPoint write SetPoint; end; var Form2: TForm2; implementation {$R *.dfm} procedure TForm2.Button1Click(Sender: TObject); begin with Point do begin X := 10; showmessage(IntToStr(x)); // 10 end; with Point do showmessage(IntToStr(x)); // 0 showmessage(IntToStr(point.x)); // 0 end; function TForm2.GetPoint: TPoint; begin Result := FPoint; end; procedure TForm2.SetPoint(const Value: TPoint); begin FPoint := Value; end; end. </code></pre> <p>You code would suddenly break, and you'd blame Delphi/Borland for allowing it in the first place.</p> <p>If you can't directly assign a property, don't use a hack to assign it - it will bite back someday.</p> <p>Use Brian's suggestion to return a pointer, but drop the With - you can eaisly do Point.X := 10;</p> http://stackoverflow.com/questions/1898560/why-does-building-with-runtime-packages-make-the-exe-file-smaller/1898870#1898870 0 Answer by Gerry for Why does building with runtime packages make the EXE file smaller? Gerry 2009-12-14T04:11:26Z 2009-12-14T04:11:26Z <p>Don't know about D2010, but in D2006 there is an option in the project menu called "Information for ProjectName". </p> <p>This will show you which packages are included after you compile.</p> <p>However, as Mason has stated, there is little advantage to using run time packages, and quite a few disadvantages. </p> http://stackoverflow.com/questions/1821863/delphi-2006-translating-sql-server-2008-express-date-fields-as-twidestring/1822273#1822273 4 Answer by Gerry for Delphi 2006 translating sql server 2008 express date fields as twidestring... Gerry 2009-11-30T20:42:59Z 2009-12-02T04:49:47Z <p>When Delphi 2006 was released, SQL server didn't have a date field type, only DateTime. (Date and Time fields were added with SQL Server 2008). As a result the DBExpress drivers in D2006 don't know how to deal with them.</p> <p>Your best bet may be to coerce the date fields to DateTime (or SmallDateTime) using CAST or CONVERT, then D2006 will know how to deal with them.</p> <pre><code>SELECT CAST(DateField as DateTime) OR SELECT CONVERT(DateTime, DateField) </code></pre> <p>Alternatively use DateTime or SmallDateTime fields in your DB schema if possible. SQL Server DateTime is similar to Delphi's TDateTime.</p> <p>Another possibility is to covert to the dbGO (ADO components), but this would require more rework.</p> http://stackoverflow.com/questions/1817262/shlwapi-strformatbytesize-and-delphi-2010-unicode/1817470#1817470 1 Answer by Gerry for ShLwApi.StrFormatByteSize and Delphi 2010 Unicode Gerry 2009-11-30T01:33:43Z 2009-11-30T08:39:42Z <p>You need to set the length of buff first. (Length buff = 0)</p> <p>Then</p> <ol> <li>Change TheSize to Int64 - you need this for sizes > 4GB anyway. </li> <li>Maybe change the call to StrFormatByteSizeW (the Delphi "headers" should have done this in D2009+) </li> <li>In spite of the name, FillChar expects the size to be in bytes, not characters. However this won't affect the result.</li> </ol> <pre><code>function FormatStringByteSize( TheSize: int64 ): string; // Return an Int64 as a string formatted similar to the status bar of Explorer var Buff: string; Count: Integer; begin SetLength(Buff, 20); Count := Length(Buff) * SizeOf(WideChar); // FillChar(Buff[1], Count, 0); - no need for this, result will be null terminated. ShLwApi.StrFormatByteSizeW( TheSize, PWideChar(Buff), Length(Buff)); Result := PChar(Buff); end; </code></pre> <p>I can't test this in D2009/10 at moment as haven't started the move to Unicode yet (next project!) It works in D2006 with WideString.</p> http://stackoverflow.com/questions/1704895/access-violation-when-calling-external-function-c-from-delphi-application/1705053#1705053 2 Answer by Gerry for Access violation when calling external function (C++) from Delphi application Gerry 2009-11-10T01:07:40Z 2009-11-10T01:15:10Z <p>The main problem id that C++ <strong>CString</strong> and Delphi <strong>String</strong> are incompatible types. </p> <p>If you want to pass data in this manner, you should use either fixed length character arrays or C-Style null terminated strings (PChar in Delphi).</p> <p>C++ would be something like:</p> <pre><code>char Dealer[100][10]; </code></pre> <p>Please edit if wrong - it been many years since I done any C coding</p> <p>Delphi</p> <pre><code>Dealer : packed array[0..9, 0..99] of char; </code></pre> <p>or</p> <pre><code>type TDealer = packed array[0..99] of char; ... Dealer : arry[0..9] of TDealer; </code></pre> <p>or if using C-string (TCHAR in API code)</p> <pre><code>Dealer: array[0..9] of PAnsiChar; // or PWideChar if source is UCS-16 </code></pre> <p>Also note that String, Char (and hence PChar) changed from single byte to double byte (UCS 16) in Delphi 2009.</p> <p>Other data types may be different as well e.g. In Delphi Word is 16bit, but may be different in C++. If possible use specific types that are common in the Windows API, such as USHORT instead of "unsigned int" and Word</p> http://stackoverflow.com/questions/1683708/delphi-mdi-application-next-window-menu-item/1684459#1684459 1 Answer by Gerry for Delphi MDI Application Next Window menu item Gerry 2009-11-05T23:44:44Z 2009-11-05T23:44:44Z <p>I don't think you need to do anything - it is implicit in MDI apps (created with the new MDI app wizard in Delphi 2006 anyway).</p> <p>It also "just works" in an app the was originally created in Delphi 6 as well.</p> http://stackoverflow.com/questions/1676576/how-to-pass-and-return-objects-to-and-from-a-dll/1677279#1677279 0 Answer by Gerry for How to pass and return objects to and from a DLL? Gerry 2009-11-04T23:00:10Z 2009-11-04T23:07:52Z <p>The <strong>BEST</strong> way is to use a COM wrapper as suggested by skamradt. </p> <p>It is possible, but <a href="http://groups.google.com/group/borland.public.delphi.nativeapi/browse%5Ffrm/thread/9dd5708d25ac5544/" rel="nofollow"><em>not a good idea</em></a> to pass object references as pointers to DLL's. Refer particularly to Peter Haas's comments.</p> <p>If you do pass an object from a Delphi DLL to a Delphi app you will have the following problems:</p> <p>You must use the same version of Delphi for the app and DLL.</p> <p>Both app and DLL MUST have the same implementation of the object - or at least identical layout of all fields in the class - OK if you are using standard objects such as TStringList.</p> <p>You should use shared memory or runtime packages, otherwise you will get weird access violations.</p> <p>I have had to maintain code where this was done - it was nightmarish as you couldn't change classes without a lot of re-compiling.</p> http://stackoverflow.com/questions/1671144/freeware-structural-highlighting-for-delphi-2007-ide/1671176#1671176 18 Answer by Gerry for Freeware "Structural Highlighting" for Delphi 2007 IDE Gerry 2009-11-04T01:14:51Z 2009-11-04T01:14:51Z <p><a href="http://www.cnpack.org" rel="nofollow">cnPack</a> has a feature like this (draws a tree showing the structure)</p> http://stackoverflow.com/questions/1648658/how-to-fully-justify-texts-programmatically-delphi/1652574#1652574 1 Answer by Gerry for How to fully justify texts programmatically (Delphi)? Gerry 2009-10-30T22:05:29Z 2009-10-30T22:05:29Z <p>There are some API calls that may help:</p> <p><a href="http://msdn.microsoft.com/en-us/library/dd162713%28VS.85%29.aspx" rel="nofollow">ExtTextOut</a> and <a href="http://msdn.microsoft.com/en-us/library/dd144860%28VS.85%29.aspx" rel="nofollow">GetCharacterPlacement</a></p> <p>Look at the GCP_JUSTIFY flag for GetCharacterPlacement</p> <p>ExtTextOut is used by Canvas.TextRect</p> http://stackoverflow.com/questions/1645896/system-uptime-in-delphi-2009/1647474#1647474 3 Answer by Gerry for System Uptime in Delphi 2009 Gerry 2009-10-30T00:59:10Z 2009-10-30T00:59:10Z <p>Note that GetTickCount isn't really designed for accuracy.</p> <p>For more reliable timing, use the <a href="http://msdn.microsoft.com/en-us/library/ms644904%28VS.85%29.aspx" rel="nofollow">QueryPerformanceCounter</a> and <a href="http://msdn.microsoft.com/en-us/library/ms644905%28VS.85%29.aspx" rel="nofollow">QueryPerformanceFrequency </a> api calls:</p> <pre><code>function SysUpTime : TDateTime; var Count, Freq : int64; begin QueryPerformanceCounter(count); QueryPerformanceFrequency(Freq); if (count&lt;&gt; 0) and (Freq &lt;&gt; 0) then begin Count := Count div Freq; Result := Count / SecsPerDay; end else Result := 0; end; </code></pre> http://stackoverflow.com/questions/1641803/delphi-textrect-with-angle-and-wordwrap-and-vertically-aligned/1642140#1642140 1 Answer by Gerry for delphi textrect with angle and wordwrap and vertically aligned Gerry 2009-10-29T07:38:18Z 2009-10-29T10:14:01Z <p>There is an Orientation property of TFont in Delphi 2006 onwards. Unfortunately the help wasn't updated to include it (like so much of D2006 help).</p> <p><a href="http://docwiki.embarcadero.com/VCL/en/Graphics.TFont.Orientation" rel="nofollow">Delphi 2010 help is here</a></p> <p>It is in tenths of a degree, so set to to 90 degress, use 900.</p> <pre><code>Canvas.Font.Orientation := 900; Canvas.TextRect(....); </code></pre> <p>You also then need to adjust the rectangle co-ordinates as required.</p> <p>I've used ths in the past, but can't remember the details.</p> http://stackoverflow.com/questions/1587410/delphi-access-violation-after-calling-function-from-external-dll-c/1591391#1591391 0 Answer by Gerry for Delphi: Access violation after calling function from external DLL (C++) Gerry 2009-10-19T22:01:45Z 2009-10-19T22:01:45Z <p>If you use a packed array[1..512] of char you will not need the ConvertToString() function.</p> <p>"packed array of char" is assignment compatible with Delphi string (this goes back to very early forms of Pascal - packed array of char WAS the string type). You nmay need to scab the result for a null ($0) char to find the end of the C-string</p> <p>Also what Delphi version are you using? if Delphi 2009 + you will need to use packed array[1..512] of <strong>AnsiChar</strong> ;</p> http://stackoverflow.com/questions/1505088/how-can-i-make-a-tcheckbox-without-transparent-text-ie-it-ignores-themes/1506282#1506282 0 Answer by Gerry for how can i make a TCheckbox without transparent text (ie: it ignores themes)? Gerry 2009-10-01T20:30:00Z 2009-10-01T20:30:00Z <p>In the past I have just added a blank TLabel behind the checkbox.</p> <p>It makes maintenance a bit of a pain though</p> http://stackoverflow.com/questions/1496283/why-does-ado-next-record-processing-slow-down-in-delphi/1496334#1496334 8 Answer by Gerry for Why does ADO Next record processing slow down in Delphi? Gerry 2009-09-30T06:04:45Z 2009-09-30T06:04:45Z <p>You should call DisableControls on all ADO datasets if you aren't using DB aware controls on the dataset.</p> <p>Otherwise the speed sucks.</p> <p>refer to <a href="http://edn.embarcadero.com/article/27790" rel="nofollow">this article</a> for details.</p> <p>Alternatively, use the internal ado recordset property</p> <pre><code>while Not ADOQuery1.Recordset.EOF do begin ADOQuery1.Recordset.Movenext; end; </code></pre> http://stackoverflow.com/questions/1459070/showing-mdi-form-as-modal/1463019#1463019 2 Answer by Gerry for Showing MDI form as modal Gerry 2009-09-22T22:40:01Z 2009-09-22T22:40:01Z <p>The simplest method is to create a trivial subclass of the form, and set </p> <p><em>FormStyle = fsMDIChild</em> </p> <p><strong>AND</strong> </p> <p><em>Form.Visible = False</em> </p> <p>in the property inspector. This is tried and tested!</p> http://stackoverflow.com/questions/1424920/how-do-i-get-the-usable-coordinates-of-the-screen-in-delphi/1425193#1425193 2 Answer by Gerry for How Do I Get the Usable Coordinates of the Screen in Delphi Gerry 2009-09-15T05:01:24Z 2009-09-15T07:16:56Z <p>To determine the work area for the current form, use Monitor.WorkareaRect. e.g.</p> <pre><code>BoundsRect := Monitor.WorkareaRect; </code></pre> <p>to set the form size to the maximum area without maximising it.</p> <p>You should also look at the <a href="http://docs.embarcadero.com/products/rad%5Fstudio/radstudio2007/RS2007%5Fhelpupdates/HUpdate4/EN/html/delphivclwin32/Forms%5FTCustomForm%5FMakeFullyVisible.html" rel="nofollow">TCustomForm.MakeFullyVisible</a> method. </p> <p>From D2006 help:</p> <p>"MakeFullyVisible checks whether the form fits entirely on the specified monitor. If not, it repositions the form so that it fits, if possible."</p> http://stackoverflow.com/questions/1409294/class-helper-and-strings-in-delphi-win32/1409572#1409572 2 Answer by Gerry for Class Helper and Strings in Delphi Win32. Gerry 2009-09-11T07:57:24Z 2009-09-12T09:46:12Z <p>Yes, string is a native type with some special compiler magic added.</p> <p>I don't know what operator overloading you would want. + and = already work as concatenation and equality operators.</p> <p>However I've thought about doing something similar myself. It might work with a record type with implicit convertors and overloaded add and equals operators (in Win32 Delphi only records can have operator overloading. This is available in D2006 (?2005) only.) </p> <p>I suspect there may be some performance hit as well.</p> <p>The syntax would be something like the following:</p> <pre><code>unit Unit1; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls; type TForm1 = class(TForm) Button1: TButton; procedure Button1Click(Sender: TObject); private { Private declarations } public { Public declarations } end; TString = record private Value : string; public class operator Add(a, b: TString): TString; class operator Implicit(a: Integer): TString; class operator Implicit(const s: string): TString; class operator Implicit(ts: TString): String; function IndexOf(const SubStr : string) : Integer; end; var Form1: TForm1; implementation class operator TString.Add(a, b : TString) : TString; begin Result.Value := a.Value + b.Value; end; class operator TString.Implicit(a: Integer): TString; begin Result.Value := IntToStr(a); end; class operator TString.Implicit(ts: TString): String; begin Result := ts.Value; end; function TString.IndexOf(const SubStr : string) : Integer; begin Result := Pos(SubStr, Value); end; class operator TString.Implicit(const s: string): TString; begin Result.Value := s; end; {$R *.dfm} procedure TForm1.Button1Click(Sender: TObject); var ts : TString; begin ts := '1234'; ShowMessage(ts); ShowMessage(IntToStr(Ts.IndexOf('2'))); end; end. </code></pre> <p>Apparently you can have "record helpers" as well, but I've never tried it myself.</p> http://stackoverflow.com/questions/1399105/dynamic-delphi-form-creation-ensuring-correct-mouse-message-handling/1402382#1402382 0 Answer by Gerry for Dynamic Delphi form creation - ensuring correct mouse message handling Gerry 2009-09-09T22:05:00Z 2009-09-09T22:05:00Z <p>While I agree with both of "Deltics" answers, there is another option - depending on whether you need to free the form.</p> <p>On the form FormClose event set the Action to caHide. This will hide rather than destroying the form. You will need to keep track of what forms you have assigned (probably using the "Data" pointer in the TTreeNode).</p> http://stackoverflow.com/questions/1382395/replacement-for-tstringlist-in-delphi-prism/1382579#1382579 0 Answer by Gerry for Replacement for TStringList in Delphi Prism. Gerry 2009-09-05T05:51:01Z 2009-09-05T05:51:01Z <p>I have used Collections.Specialized.HybridDictionary (and similar) classes in the little bit of C# I have done. As it is a standard .net object it should be available in Prism.</p> <p>I don't know if it has a LoadFrom/Save to file though </p> http://stackoverflow.com/questions/1348278/delphi-form-main-form-child-stacking-issue/1349802#1349802 0 Answer by Gerry for [Delphi] form main + form child stacking issue Gerry 2009-08-28T23:02:20Z 2009-08-28T23:02:20Z <p>If you have references to the child forms, use Form2.BoundsRect := Form1.BoundsRect</p> http://stackoverflow.com/questions/1312010/delphi-parameter-object-is-improperly-defined-inconsistent-or-incomplete-infor/1313759#1313759 2 Answer by Gerry for Delphi: “Parameter object is improperly defined. Inconsistent or incomplete information was provided.” Gerry 2009-08-21T19:16:14Z 2009-08-24T00:15:26Z <p>I've had a chance to try this with a compiler :) I must install one at home sometime.</p> <p>While I still find your use of WITH unusual, it does seem to work OK. </p> <p>I have seen the error you are getting in several cases:</p> <ol> <li>Trying to run more than one query against a connection at once (due to threading or a timer + processMessages) </li> <li>With TADOStoredProc when the ProcedureName is incorrect</li> <li>Sometimes if ADO cannot parse the query - can't test this without your DB schema.</li> </ol> <p>Note that there is no need in SQL Server to explicitly define the parameter type. These are automatically assigned by a OnChanged event attached to the SQL TStringList object. </p> <p>As a result, it is best to either assign the SQL.Text property (as you do), or if using .Add('SELECT ...'), use a SQL.BeginUpdate/SQL.EndUpdate pair.</p> <p>Original reply:</p> <pre><code> with AQ_Query do begin try AQ_Query := TADOQuery.Create(nil); ConnectionString := strConnectionString; </code></pre> <p>While this seems to work, it seems a bit strange to refer to an object before you instantiate it. </p> <p>AQ_Query should be instantiated before the with statement:</p> <pre><code> AQ_Query := TADOQuery.Create(nil); with AQ_Query do begin try ConnectionString := strConnectionString; </code></pre> <p>Better yet don't use <a href="http://stackoverflow.com/questions/71419/whats-wrong-with-delphis-with" title="Better yet, don't use WITH">WITH</a> - It's asking for trouble.</p> <p>Also note that object creation should be BEFORE a try..finally. As written you would have a compiler warning. Don't ignore these - they help you write better code.</p> http://stackoverflow.com/questions/1286222/what-is-the-most-common-way-to-create-a-folder-selection-dialog-using-delphi/1286238#1286238 12 Answer by Gerry for What is the most common way to create a folder selection dialog using Delphi? Gerry 2009-08-17T05:09:36Z 2009-08-21T06:18:22Z <p>There are two overloaded routines in FileCtrl.pas called SelectDirectory </p> <p>For a modern look, use the second form, with sdNewUI</p> <pre><code>var dir : string; begin dir := 'C:\temp'; FileCtrl.SelectDirectory('Select', 'C:\', dir, [sdNewFolder, sdNewUI], Self); end; </code></pre> <p>NOTE: sdNewFolder, sdNewUI etc are only available from D2006+</p> http://stackoverflow.com/questions/1282015/the-fastest-way-to-compare-a-partial-string/1283409#1283409 8 Answer by Gerry for The fastest way to compare a partial string? Gerry 2009-08-16T03:47:49Z 2009-08-16T03:47:49Z <p>Use StrUtils.AnsiStartsStr for case-sensitive, StrUtils.AnsiStartsText for case-insensitive (add StrUtils to your uses clause)</p> http://stackoverflow.com/questions/1279022/colortodec-function-clred-0000ff/1280422#1280422 0 Answer by Gerry for ColorToDec function (clRed = $0000FF)? Gerry 2009-08-14T21:56:51Z 2009-08-15T02:10:18Z <p>Colour constants in Delphi (and the Windows API) are simply signed integers. They are normally represented in Hexadecimal format (with a leading $).</p> <p>It is defined in Graphics.pas as TColor = -$7FFFFFFF-1..$7FFFFFFF; </p> <p>Positive values ($00000000 -> $00FFFFFF) are in BGR format: $00FF0000 = blue, $0000FF00 = green, $000000FF = red.</p> <p>Negative values refer to user defineable system colours, like the colour for window text (clWindowText).</p> <p>To convert a TColor to it's display value, use </p> <pre><code>IntToHex(Colour, 8); </code></pre> <p>or use </p> <pre><code>Format('%.8x', [Colour]); </code></pre> <p>In older versions of Delphi, IntToHex calls Format(), in later versions it is directly implemented and is much faster.</p> <p>To convert to HTML #RRBBGG format, you need to reverse the red and green values in RRUZ answer:</p> <pre><code>function FromTColorDelphiToHTML(Color : TColor) : string; begin Result :='#'+ IntToHex(GetRValue(Color), 2) + IntToHex(GetGValue(Color), 2) + IntToHex(GetBValue(Color), 2) ; end; </code></pre> http://stackoverflow.com/questions/1268710/delphi-4-error-file-not-foundhtmlcons-inc/1269329#1269329 1 Answer by Gerry for Delphi 4 error:- file not found:'htmlcons.inc' Gerry 2009-08-12T23:48:14Z 2009-08-12T23:48:14Z <p>htmlcons.inc is part of the "HTML Viewer Components" available (for free) from <a href="http://pbear.com/" rel="nofollow">http://pbear.com/</a>.</p> <p>It is basically a Delphi based HTML rendering engine.</p> http://stackoverflow.com/questions/1246770/how-to-convert-int-to-currency/1248090#1248090 1 Answer by Gerry for How to convert int to currency? Gerry 2009-08-08T05:58:08Z 2009-08-08T06:09:02Z <p>You can assign Integer to Currency directly by assignment, the compiler will do the conversion for you:</p> <pre><code>var Int : Integer; Cur : Currency; begin Int := 1900000; Cur := Int; ShowMessage(CurrToStr(Cur)); // 1900000 ShowMessage(Format('%m', [Cur]); // 1,900,000.00 in US/UK/NZ/AU etc, "1 900 000,00" in Spain etc. ShowMessage(Format('%.0m', [Cur]); // 1,900,000 in US/UK/NZ/AU etc, "1 900 000" in Spain etc. end; </code></pre> <p>If you want Commas using Spanish regional settings set ThousandSeparator := ','; or use the extended CurrToStrF(amount, ffCurrency, decimals, FormatSettings)) version.</p> <p>The verison with FormatSettings is also thread-safe.</p> <p>Note: You can't assign Currency to Integer directly, You would need to use Int := Trunc(Cur) but this is inefficient as it converts to float first (unless compiler does something smart).</p> http://stackoverflow.com/questions/1201260/delphi-how-to-use-break-outside-of-loop-or-case/1203283#1203283 1 Answer by Gerry for DELPHI: how to use "break" outside of loop or case? Gerry 2009-07-29T21:52:14Z 2009-07-29T21:58:37Z <p>Why do you want to use break rather than Exit? Break in Delphi is not the same as "break" in the curly brace languages.</p> <pre><code>var tc: TComponent begin { do something to get tc } if (tc is TDBEdit) then begin if not (check_something_about_edit(tc)) then do_something_else_edit(tc); Exit; end; if (tc is TBMemo) then begin if not (check_something_about_memo(tc)) then do_something_else_memo(tc); Exit; end; raise exception.create('invalid component type'); end; </code></pre> <p>A point about layout. If you didn't try to reduce whitespace so much it mightn't take "another hour to make sure all my if-else's lined up correctly" as you said in an earlier comment.</p> <p>If you have code that you want to execute after this, either use Ralph's suggestion of a local procedure, or wrap in a try..finally - the code in the finally will still be executed.</p> http://stackoverflow.com/questions/1197771/added-the-apptype-console-directive-and-now-my-application-runs-very-slowly-m/1197907#1197907 2 Answer by Gerry for Added the {APPTYPE CONSOLE} directive and now my application runs very slowly. Moving the mouse makes it run faster. Gerry 2009-07-29T03:25:44Z 2009-07-29T21:19:52Z <p>If you want an application to return an "error" code there is no need to make it a console application. You only need to set the ExitCode, e.g.</p> <pre><code>ExitCode := 10; </code></pre> <p>in a batch file</p> <pre><code>@Echo off project1 echo %errorlevel% </code></pre> <p>Will display the application, then display 10 when.</p> <p>Note: It is also possible to create a console window dynamically from the windows API using AllocConsole or to attach using AttachConsole. </p> <p>I created an object wrapper for this once, but no longer have the code available. From memory it didn't support redirection (because I didn't need it).</p> http://stackoverflow.com/questions/373449/what-simple-changes-made-the-biggest-improvements-to-your-delphi-programs/373498#373498 4 Answer by Gerry for What Simple Changes Made the Biggest Improvements to Your Delphi Programs Gerry 2008-12-17T02:30:17Z 2009-07-29T06:32:32Z <p>Make intelligent use of SetLength() for strings and arrays. Optimize initialization with FillChar or ZeroMemory.</p> <p>Local variables created on stack (e.g. record types) are faster than heap allocated (objects and New()) variables.</p> <p>Reuse objects rather than Destroy then create. But make sure management code for this is faster than memory manager!</p> http://stackoverflow.com/questions/1177107/delphi-2006-always-stops-working-when-closed-on-vista/1179940#1179940 0 Answer by Gerry for Delphi 2006 always stops working when closed on Vista Gerry 2009-07-24T20:16:34Z 2009-07-24T20:16:34Z <p>Try closing all open projects before shutting down (Close All from the file menu). </p> <p>I have a similar problem with D2006 under XP, and closing everything seems to prevent it (some sort of race condition?)</p> <p>Note: We don't use many third party components.</p> http://stackoverflow.com/questions/1920140/delphi-records-in-classes/1921282#1921282 Comment by Gerry on Delphi: Records in Classes Gerry 2009-12-17T20:34:23Z 2009-12-17T20:34:23Z Which is the same as would happen once someone put a Getter on the class! http://stackoverflow.com/questions/1920140/delphi-records-in-classes/1921038#1921038 Comment by Gerry on Delphi: Records in Classes Gerry 2009-12-17T20:32:54Z 2009-12-17T20:32:54Z @Smasher. Then your legacy code would be broken once someone put a getter method on the class. It would compile, but NOT WORK. http://stackoverflow.com/questions/1920140/delphi-records-in-classes/1920425#1920425 Comment by Gerry on Delphi: Records in Classes Gerry 2009-12-17T20:27:28Z 2009-12-17T20:27:28Z Ken: What's atrocious about it? http://stackoverflow.com/questions/1920140/delphi-records-in-classes/1920214#1920214 Comment by Gerry on Delphi: Records in Classes Gerry 2009-12-17T20:20:54Z 2009-12-17T20:20:54Z There can still be advantages to using records. They are useful in TPersistent.AssignTo. Also, if you have a memory intensive app, tou can used packed records to reduce memory usage (a a performance cost) http://stackoverflow.com/questions/1856887/is-there-a-way-to-make-the-code-folding-stay-folded-in-delphi-2010/1857089#1857089 Comment by Gerry on Is there a way to make the "Code Folding" Stay Folded In Delphi 2010 Gerry 2009-12-07T02:41:12Z 2009-12-07T02:41:12Z Seconding Gunny's comment. Or try &lt;insert flame war&gt; http://stackoverflow.com/questions/1801579/should-i-start-my-new-shareware-project-in-c-or-delphi/1802070#1802070 Comment by Gerry on Should I start my new shareware project in C# or Delphi? Gerry 2009-11-26T10:15:02Z 2009-11-26T10:15:02Z So what are object references? An object ref can still be null! Highly subjective - and biased by been written by Sun http://stackoverflow.com/questions/1755287/is-it-bad-practice-to-use-temporary-variables-to-avoid-typing/1755803#1755803 Comment by Gerry on Is it bad practice to use temporary variables to avoid typing? Gerry 2009-11-26T01:12:04Z 2009-11-26T01:12:04Z If getting $this-&gt;CurrentDatabase involves a function call (I don't know any PHP so I can't tell), it should be FASTER to use a temporary variable, as the function is only called once. Nut bear in mind Nakedible's answer. http://stackoverflow.com/questions/1784023/large-dynamic-array-slow-writing/1784062#1784062 Comment by Gerry on Large dynamic array - slow writing Gerry 2009-11-24T01:30:56Z 2009-11-24T01:30:56Z FastMM definitely works in D6 - I have used it in the past. But Marco's comment still applies. http://stackoverflow.com/questions/1744505/should-i-subtract-1-from-the-upper-bound-of-my-for-loops/1745724#1745724 Comment by Gerry on Should I subtract 1 from the upper bound of my "for" loops? Gerry 2009-11-17T00:28:39Z 2009-11-17T00:28:39Z These aren't arrays - they are lists, and will always check the bounds, regardless of range checking. http://stackoverflow.com/questions/1723754/delphi-2009-causing-shell32-dll-errors Comment by Gerry on Delphi 2009 causing shell32.dll errors? Gerry 2009-11-12T20:28:29Z 2009-11-12T20:28:29Z What OS is the client using? http://stackoverflow.com/questions/1715393/delphi-how-to-use-line-breaks-in-a-ini-file/1715883#1715883 Comment by Gerry on Delphi: How to use line breaks in a ini file? Gerry 2009-11-11T20:25:55Z 2009-11-11T20:25:55Z @PA: It isn't a bug - it is intended, but often undesirable behaviour. Later versions of Delphi (2006+) added the &quot;StrictDelimiter&quot; property to avoid this. http://stackoverflow.com/questions/1676576/how-to-pass-and-return-objects-to-and-from-a-dll Comment by Gerry on How to pass and return objects to and from a DLL? Gerry 2009-11-04T22:50:07Z 2009-11-04T22:50:07Z Look at <a href="http://stackoverflow.com/questions/1596704/how-to-return-an-instance-from-a-dll" rel="nofollow" title="how to return an instance from a dll">stackoverflow.com/questions/1596704/&hellip;</a> http://stackoverflow.com/questions/1661948/looking-for-a-delphi-gantt-chart-component/1662378#1662378 Comment by Gerry on Looking for a Delphi Gantt chart component Gerry 2009-11-02T20:34:26Z 2009-11-02T20:34:26Z I have used this component in one application. It has a fairly steep learning curve, but is very flexible. The default look for scroll bars etc was a bit dated, but owner draw options allowed using ThemeServices. There seems to be a D2009 version. http://stackoverflow.com/questions/1649048/case-insensitive-bob-jenkins-hash/1649407#1649407 Comment by Gerry on Case-insensitive Bob Jenkins Hash? Gerry 2009-10-30T21:40:54Z 2009-10-30T21:40:54Z +1 for Knuth's FULL quote. So often we only get the &quot;premature optimization is the root of all evil&quot; part. http://stackoverflow.com/questions/1652378/can-i-have-unnamed-dynamic-array-types-as-var-parameters Comment by Gerry on Can I Have Unnamed Dynamic Array Types as Var Parameters Gerry 2009-10-30T21:33:38Z 2009-10-30T21:33:38Z Why do you want/need to? This is standard Pascal usage. All you need to do is declare &quot;a&quot; as a: TIntArray. If you are working on legacy code, you need to make changes to it anyway (to add call to SizeArray) I assume that SizeArray is just a sample - otherwise why not call SetLength directly&gt;