User Steve - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T15:16:21Z http://stackoverflow.com/feeds/user/22712 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1893125/how-can-a-shared-event-handler-know-which-controls-event-its-handling/1893414#1893414 2 Answer by Steve for How can a shared event handler know which control's event it's handling? Steve 2009-12-12T13:27:28Z 2009-12-12T23:45:36Z <p>You'll need to use sender.</p> <pre><code>(Sender as TButton).Enabled := False; </code></pre> <p>Would disable any button that has this event handler assigned to its onclick event. The cast can also be done</p> <pre><code>TButton(Sender).Enabled := False; </code></pre> <p>but in this case you need to be 100% that sender is a button. Using as introduces a check before the cast, so is slightly slower, but in this type of example is not really a problem I think.</p> http://stackoverflow.com/questions/1866180/how-do-i-create-an-instance-from-a-string-that-provides-the-class-name/1866808#1866808 4 Answer by Steve for How do I create an instance from a string that provides the class name? Steve 2009-12-08T12:58:57Z 2009-12-08T14:06:06Z <p>You may not want to use TComponent, and there is another way of doing this.</p> <p>add a reference to your class</p> <pre><code>TTrippleClass = class of TTripple; </code></pre> <p>Then your buttonclick becomes :</p> <pre><code>procedure TForm1.Button1Click(Sender: TObject); var CRef : TTrippleClass; APer : TPersistent; begin CRef := TTrippleClass(GetClass('TTripple')); if CRef&lt;&gt;nil then begin APer := TTripple(TTrippleClass(CRef).Create); ShowMessage(APer.ClassName); // shows TTripple, what is correct if APer is TTripple then (APer as TTripple).Font.Color:=90; end; end; </code></pre> <p>Now you may want to have more than one Tripple type then create an custom ancestor.</p> <pre><code>TCustomTripple = class(TPersistent) public constructor Create;virtual; end; TCustomTrippleClass = class of TCustomTripple; TTripple = class(TCustomTripple) strict private fFont : TFont; public constructor Create;override; destructor Destroy;override; property Font : TFont read fFont; end; constructor TCustomTripple.Create; begin inherited Create; end; constructor TTripple.Create; begin inherited; fFont := TFont.Create; end; destructor TTripple.Destroy; begin fFont.Free; inherited; end; procedure TForm1.Button1Click(Sender: TObject); var CRef : TCustomTrippleClass; APer : TCustomTripple; begin CRef := TCustomTrippleClass(GetClass('TTripple')); if CRef&lt;&gt;nil then begin APer := TCustomTripple(TCustomTrippleClass(CRef).Create); ShowMessage(APer.ClassName); // shows TTripple, what is correct if APer is TTripple then (APer as TTripple).Font.Color:=90; end; end; </code></pre> http://stackoverflow.com/questions/1409593/creating-a-singleton-in-delphi-using-the-new-features-of-d2009-and-d2010 4 Creating a singleton in Delphi using the new features of D2009 and D2010 Steve 2009-09-11T08:01:34Z 2009-12-01T22:45:32Z <p>I'm looking to create a singleton in Delphi. I've done this before using older versions of Delphi, and ended up using global variables (in the implementation section) and using initialization and finalization to take care of the instance. Also there was no way of preventing the user from creating an instance as you couldn't hide the standard constructor. I was wondering if any of the new features such as class constructors and destructors, and class variables (ok, not so new), perhaps generics, could help in creating a generic singleton class. I haven't managed to create something to my satisfaction yet.</p> http://stackoverflow.com/questions/1803863/how-to-get-the-current-logged-on-user-including-domain-in-delphi-2009 1 How to get the current logged on user, including domain in Delphi 2009? Steve 2009-11-26T14:08:30Z 2009-11-27T12:41:25Z <p>I need to get the current logged on username? I need this to work properly when I call the code from ASP.NET which is working in Windows Authentication mode. i.e. I do not want to get the ASPNET user in that circumstance, but the impersonated user. This is related to my earlier <a href="http://stackoverflow.com/questions/1797814/windows-authentication-in-a-com-object-called-from-asp-net">question</a>. Everything I try returns <strong>ASPNET</strong>.</p> http://stackoverflow.com/questions/268537/what-features-of-the-upcoming-delphi-prism-would-you-like-to-see-in-delphi-for-wi 5 What features of the upcoming Delphi Prism would you like to see in Delphi for win32? Steve 2008-11-06T12:41:07Z 2009-11-26T22:17:03Z <p>What with Delphi Prism coming soon, I've been looking at Oxygene (the Remobjects compiler, Delphi Prism will use), and have a found a few features I'd love to see in Delphi Win32. S</p> http://stackoverflow.com/questions/1804464/database-versioning-in-installed-applications-using-delphi/1805844#1805844 0 Answer by Steve for Database versioning in installed applications using Delphi. Steve 2009-11-26T21:54:28Z 2009-11-26T21:54:28Z <p>What I do is store a version number in the database, and a version number in the application. Every time I need to change the database structure, I create some code update the structure of the database, and increase the version number in the application. When the application starts, it compares, numbers, and if need be runs some code to update the database structure <strong>AND</strong> update the database's version number. Thus the database is now up to date with the application. My code is something like</p> <pre><code>if DBVersion &lt; AppVersion then begin for i := DBVersion+1 to AppVersion do UpdateStructure(i); end else if DBVersion &gt; AppVersion then raise EWrongVersion.Create('Wrong application for this database'); </code></pre> <p>UpdateStructure just runs the necessary code something like :</p> <pre><code>procedure UpdateStructure(const aVersion : Integer); begin case aVersion of 1 : //some db code 2 : //some more db code ... ... end; UpdateDatabaseVersion(aVersion); end; </code></pre> <p>You can actually use the same code to create the database from scratch</p> <pre><code>CreateDatabase; for i := 1 to AppVersion do UpdateStructure(i); </code></pre> http://stackoverflow.com/questions/897357/why-is-the-executable-produced-by-delphi-2009-ide-different-to-that-produced-on-t 7 Why is the executable produced by Delphi 2009 IDE different to that produced on the command line? Steve 2009-05-22T11:07:23Z 2009-11-26T17:20:57Z <p>I'm producing builds using MSBuild, and build configurations set up in the dproj on the command line. It's slightly disconcerting that the size of the executables thus produced are different (not by much, but still!) to what an IDE build produces. Any ideas why? I would have thought the same compiler is used?</p> http://stackoverflow.com/questions/1797814/windows-authentication-in-a-com-object-called-from-asp-net 0 Windows Authentication in a COM object called from ASP.NET Steve 2009-11-25T15:44:56Z 2009-11-25T18:42:13Z <p>I have a COM object written in Delphi, which uses Active Directory Services to return the current logged on user. This is the code I use :</p> <pre><code>var SysInfo : IADsWinNTSystemInfo; begin SysInfo := CoWinNTSystemInfo.Create; Result := SysInfo.DomainName + '/' + SysInfo.UserName; end; </code></pre> <p>CoWinNTSystemInfo is just a wrapper around Activeds.dll and does the following :</p> <pre><code>CreateComObject(CLASS_WinNTSystemInfo) as IADsWinNTSystemInfo; </code></pre> <p>This works fine when the COM object is called from another windows executable, but we have someone trying to call it in ASP.NET. Apparently, the code above returns the ASPNET user and not the impersonated user. The person using our component is pretty sure IIS is setup properly, as the same COM object uses SQL Server and windows authentication from within the COM object with no problems.</p> <p>The following has been added to the web config</p> <pre><code>&lt;authentication mode="Windows"/&gt; &lt;identity impersonate="True"/&gt; </code></pre> <p>IIs has Integrated Windows Authentication <strong>enabled</strong> and Anonymous Access <strong>disabled</strong></p> <p>Is there any other way of doing this, or am I missing something.</p> http://stackoverflow.com/questions/1781263/fluid-form-layout-in-delphi/1789546#1789546 0 Answer by Steve for Fluid Form Layout in Delphi Steve 2009-11-24T11:42:23Z 2009-11-24T11:42:23Z <p>What I would do with a complex layout is actually split it up into several tabs. This has two advantages. It simplifies the form layout, and allows you to show and hide whole tabs depending on choices made in other tabs.</p> http://stackoverflow.com/questions/1744508/why-does-delphi-2009-sometimes-more-often-that-not-insist-i-build 1 Why does Delphi 2009 sometimes (more often that not) insist I build? Steve 2009-11-16T20:00:49Z 2009-11-16T21:46:29Z <p>I have noticed that with Delphi 2009, I often get strange errors when compiling, such as recursive unit use, and sometimes just (seemingly) random errors which point to white space at the end of a unit.</p> <p>These are not really errors, because a full build will fix any of the problems, and I can carry on. I suspect that generics have something to do with this. Now a Delphi build is very fast, but this is still frustrating. Delphi 2006 and Delphi 2007 did not do this, but then they didn't have generics. </p> http://stackoverflow.com/questions/1730693/help-with-strange-delphi-5-ide-problems/1744468#1744468 0 Answer by Steve for Help with strange Delphi 5 IDE problems Steve 2009-11-16T19:54:29Z 2009-11-16T19:54:29Z <p>Since you had no problems with Delphi 7, is there any reason for not migrating this application to Delphi 7? It shouldn't be difficult to do, unless you have some third party components with no source.</p> http://stackoverflow.com/questions/875318/how-best-to-redirect-a-webpage-without-using-javascript 0 How best to redirect a webpage without using Javascript? Steve 2009-05-17T19:39:10Z 2009-11-12T19:22:46Z <p>I have some script in my default page that redirects users to language specific versions of my website depending on the language of the browser. I want to add something that redirects those users who do NOT have Javascript enabled.</p> <p>Currently I have the following :</p> <pre><code>&lt;noscript&gt; &lt;META HTTP-EQUIV=REFRESH CONTENT="1; URL=en/index.htm"&gt;. &lt;/noscript&gt; </code></pre> <p>But I've read this is not too wise as some search engines frown upon it. How do I do this and keep search engines happy?</p> http://stackoverflow.com/questions/1690908/more-memory-for-tmemo-trichedit/1691262#1691262 4 Answer by Steve for more memory for TMemo / TRichEdit Steve 2009-11-06T23:38:42Z 2009-11-06T23:38:42Z <p>Rather than load the whole file, wouldn't it be better to use the control as a 'window' to the data? Just load your data in chunks, loading more (and getting rid of some) as the user scrolls up or down. </p> http://stackoverflow.com/questions/139844/can-delphi-2009-be-installed-on-the-same-machine-as-delphi-2006-or-delphi-2007 9 Can Delphi 2009 be installed on the same machine as Delphi 2006 or Delphi 2007? Steve 2008-09-26T14:23:30Z 2009-10-20T14:02:42Z <p>Is there any conflict?</p> http://stackoverflow.com/questions/1499717/eoutofmemory-creating-large-xml-using-delphi/1500928#1500928 0 Answer by Steve for EOutOfMemory Creating Large XML Using Delphi Steve 2009-09-30T22:12:45Z 2009-09-30T22:12:45Z <p>Try using a SAX parser rather than DOM. DOM keeps a representation of the whole XML file in memory.</p> <p>try <a href="http://cc.embarcadero.com/Item/16043" rel="nofollow">here</a></p> http://stackoverflow.com/questions/1497230/what-is-the-accepted-way-to-use-frames-in-delphi/1497282#1497282 8 Answer by Steve for What is the accepted way to use frames in Delphi? Steve 2009-09-30T10:33:27Z 2009-09-30T10:33:27Z <p>That's one way, and there is nothing wrong with it. Another way, is to to do it visually. So you can basically add the frame to a form. to do this you :</p> <ul> <li>Create your Frame.</li> <li>Go to the form you wish to put your frame on.</li> <li>Add a Frames component (Standard Tab)</li> <li>Choose your frame from the drop down.</li> <li>That's it!</li> </ul> http://stackoverflow.com/questions/270350/lambda-expressions-in-delphi-prism-oxygene 1 Lambda Expressions in Delphi Prism/Oxygene Steve 2008-11-06T21:26:48Z 2009-09-29T12:36:54Z <p>I have been experimenting with Lambda expressions in Oxygene. Very simple recursive lambda expression to calculate a fibonacci number :</p> <pre><code>var fib : Func&lt;int32, int32&gt;; fib := n -&gt; iif(n &gt; 1, fib(n - 1) + fib(n - 2), n); fib(3); </code></pre> <p>When I run this code I get a nullreferenceexception. Any ideas as to what I'm doing wrong?</p> http://stackoverflow.com/questions/1482898/online-code-beautifier-and-formatter-for-delphi-or-pascal/1482971#1482971 0 Answer by Steve for Online Code Beautifier And Formatter for Delphi or Pascal Steve 2009-09-27T07:05:50Z 2009-09-27T07:05:50Z <p>Delphi 2010 has its own formatter. Obviously it's not backward compatible, but Delphi 2010 has other things going for it, so why not go for it?</p> http://stackoverflow.com/questions/1459560/optional-parameters-in-active-x-libraries/1476598#1476598 2 Answer by Steve for Optional parameters in Active X libraries Steve 2009-09-25T10:42:46Z 2009-09-25T13:18:06Z <p>To add a Default Parameter (called an optional parameter in VBA) in a COM Library, you need to set the parameter flag in the type library editor. Click on the modifier column, then on the button of the parameter in question. Tick the <em>has default value</em> check box, and put a default value in the supplied edit box.</p> <p>Now for the problem. In Delphi 2009, there is a bug in the type library editor, which attempts to write the date out to the ridl file as a string. The editor should in fact convert this to a integer. This will not compile. Luckily, the ridl file, is a string file, and can be edited. So this is what you'll see in the ridl file</p> <pre><code>HRESULT _stdcall DevelopmentCount([in, defaultvalue(29/12/1899)] DATE); </code></pre> <p>change that date to an integer (note 30/12/1899 is 0)</p> <pre><code>HRESULT _stdcall DevelopmentCount([in, defaultvalue(-1)] DATE); </code></pre> <p>The dll will now compile, and the default value applied.</p> <p>Note that if you open up the type library in Delphi, it will replace the integer with the date string, and again you will not be able to compile, so you'll have to keep changing it back. I don't know whether this has been fixed in Delphi 2010.</p> http://stackoverflow.com/questions/1406436/get-list-of-objects-methods-properties-and-events/1409561#1409561 0 Answer by Steve for Get list of object's methods, properties and events? Steve 2009-09-11T07:55:52Z 2009-09-11T07:55:52Z <p>I just use <strong>code completion</strong>. If you can't figure out what the component does from the names of the properties and methods, then it's probably poorly designed anyway, and you're better off not using it. Also, since you're asking the question, I'm guessing you do not have the source. If you don't, again, I wouldn't use the component. You're only storing trouble for yourself.</p> http://stackoverflow.com/questions/1375104/does-building-a-delphi-project-with-msbuild-create-net-dependencies/1384173#1384173 0 Answer by Steve for Does building a Delphi project with MSBuild create .Net dependencies? Steve 2009-09-05T20:19:54Z 2009-09-05T20:19:54Z <p>MsBuild ultimately calls DCC32 (Delphi Command Line Compiler). So it has absolutely nothing to do with .NET.</p> http://stackoverflow.com/questions/1342859/error-msb4040-there-is-no-target-in-the-project-when-using-msbuilddelphi2009/1344138#1344138 1 Answer by Steve for "ERROR MSB4040 There is no target in the project" when using msbuild+Delphi2009 Steve 2009-08-27T22:43:11Z 2009-08-27T22:43:11Z <p>There is a batch file called rsvars.bat (search for it in the RAD Studio folder). Call that before calling MSBuild, and it will setup the necessary environment variables. Make sure the folders are correct in rsvars.bat if you have the compiler in a different location to the default.</p> http://stackoverflow.com/questions/1273619/how-do-i-setup-multiple-triggers-for-cruisecontrol-net 1 How do I setup Multiple Triggers for Cruisecontrol.NET? Steve 2009-08-13T18:00:35Z 2009-08-14T05:56:03Z <p>I'm new to CruiseControl.net and am attempting to setup it up for a project I'm working on. The project is kept under subversion, but the whole project is made up of the core project, and several components, each one a separate subversion project, each with a trunk, possible branches and tags. I need to setup cruisecontrol.net so that a change in the main core project subversion folder as <strong>well as any of the included components</strong> triggers a build. Obviously if the commit consists of files committed to multiple components, I still only want one build. Is it possible?</p> http://stackoverflow.com/questions/1250071/c-standards-style-for-a-delphi-developer 2 C# standards/style for a Delphi developer? Steve 2009-08-08T22:45:11Z 2009-08-08T22:57:39Z <p>After you've been programming for a long time with a language, you pick up certain coding standards or styles. With Delphi it's things like prefixing private variables with <em>f</em> and putting private declarations before protected, which in turn are before public ones etc etc. Most of this comes from the VCL.</p> <p>Is there any recognized coding standard or style in the C# world? I'm tempted to put an <em>f</em> in front of my private member variables but this would only make sense to other Delphi developers.</p> http://stackoverflow.com/questions/1074746/testing-d2009-application-with-test-complete-7-0 3 Testing D2009 application with Test Complete 7.0 Steve 2009-07-02T14:33:04Z 2009-07-29T09:08:55Z <p>We are trying to use Test Complete 7 to test an application compiled in Delphi 2009 (recently ported from D2006). In theory this should be really easy - you compile your app with debug information, then user a stripper utility to strip the debug info out into a separate *.tds file. TC should then have access to all the properties and methods it needs. In practice we are finding that: a) it can be quite hard to get many properties and methods to appear at all b) if they do appear and they have parameters/indices then the indicated parameter/index list may bear no relation to the actual list in our code c) methods and properties that appear to be shipshape do not work/return anything other than complete rubbish.</p> <p>Does anyone else have any experience of this scenario, did you experience any problems, and if you were able to solve them, what did you do?</p> <p>Automated QA are looking into this problem for us, but we don't seem to be making much headway, and it is looking like the only way they will solve this is if we send them the source for our application which is something we are reluctant to do for various reasons ranging from practical to legal.</p> <p>btw, on a small test app, we do not experience the same problems.</p> http://stackoverflow.com/questions/1074746/testing-d2009-application-with-test-complete-7-0/1198959#1198959 2 Answer by Steve for Testing D2009 application with Test Complete 7.0 Steve 2009-07-29T09:08:55Z 2009-07-29T09:08:55Z <p>I'm answering my own question, as we have found the problem. Adding Generics to the executable seems to create debug information, Test Complete can't handle. Not sure yet if it is Delphi messing up the debug information, or Test Complete not reading it properly.</p> http://stackoverflow.com/questions/1177107/delphi-2006-always-stops-working-when-closed-on-vista/1178692#1178692 0 Answer by Steve for Delphi 2006 always stops working when closed on Vista Steve 2009-07-24T16:17:27Z 2009-07-24T16:17:27Z <p>Do you have GExperts installed? I suspected that when I had D2006 shutdown problems. It's not just a vista problem. It just manifests itself differently in xp.</p> http://stackoverflow.com/questions/1111537/why-do-you-use-delphi/1115866#1115866 2 Answer by Steve for Why Do You Use Delphi? Steve 2009-07-12T11:31:15Z 2009-07-12T11:44:18Z <p>I actually think well written Object Pascal code looks beautiful. Sad I know, but take a look at some of your best Pascal code..are you smiling?</p> <p>I don't get that looking at C# for instance.</p> <p>That's not the only, or even most important reason I use Delphi, but it does help if you are smiling while working! </p> http://stackoverflow.com/questions/289712/how-do-you-format-your-compound-statements-in-delphi-and-c 3 How do you format your Compound Statements in Delphi and C#? Steve 2008-11-14T10:31:12Z 2009-07-06T12:21:40Z <p>As a long time Pascal and Delphi developer, I always line up my begin and ends thus :</p> <pre><code>begin if x = y then begin ... ... end else for i := 0 to 20 do begin ... ... end; end; </code></pre> <p>What drives me nuts is code formatted thus :</p> <pre><code>begin if x = y then begin ... ... end else for i := 0 to 20 do begin ... ... end; end; </code></pre> <p>When there are a few levels of compound statements I find this hard to read. The above code is ok, because it's not that complicated, but for consistency I'd prefer all begins and ends aligned.</p> <p>As I start using c#, I find myself aligning curly brackets too. What's the norm in the C# world? </p> <p><strong>Edit :</strong></p> <p>Someone has pointed out that this is the type of question that shouldn't be asked on SO. I don't see why not. I'm in the process of setting up a coding guidelines document. I know I'll get some resistance to certain things, I'm hoping to get a few answers here, so I can be ready to meet that resistance head-on.</p> http://stackoverflow.com/questions/1082735/creating-compressed-zipped-folder-using-delphi/1082887#1082887 1 Answer by Steve for Creating Compressed (Zipped) Folder using Delphi Steve 2009-07-04T20:04:07Z 2009-07-04T20:04:07Z <p>You could use <a href="http://sourceforge.net/projects/tpabbrevia/" rel="nofollow">TurboPower Abbrevia</a> which is now open source.</p> http://stackoverflow.com/questions/1866180/how-do-i-create-an-instance-from-a-string-that-provides-the-class-name/1866808#1866808 Comment by Steve on How do I create an instance from a string that provides the class name? Steve 2009-12-08T14:05:11Z 2009-12-08T14:05:11Z I did, but then copied it (by hand) as I have Delphi on another machine to the one I was posting the answer on. I'll check it. http://stackoverflow.com/questions/1856887/is-there-a-way-to-make-the-code-folding-stay-folded-in-delphi-2010/1857089#1857089 Comment by Steve on Is there a way to make the "Code Folding" Stay Folded In Delphi 2010 Steve 2009-12-08T13:04:58Z 2009-12-08T13:04:58Z Actually you need it more in VS with C# than you do with Pascal because of the way classes are coded. http://stackoverflow.com/questions/1803863/how-to-get-the-current-logged-on-user-including-domain-in-delphi-2009/1804139#1804139 Comment by Steve on How to get the current logged on user, including domain in Delphi 2009? Steve 2009-11-26T21:40:32Z 2009-11-26T21:40:32Z It was in fact an STA COM object. So it all makes sense, and the answer is perfect. Thanks http://stackoverflow.com/questions/1803863/how-to-get-the-current-logged-on-user-including-domain-in-delphi-2009/1804139#1804139 Comment by Steve on How to get the current logged on user, including domain in Delphi 2009? Steve 2009-11-26T18:57:28Z 2009-11-26T18:57:28Z That worked, although our com object is an MTA COM object and not an STA com object, but obviously something else must be going on. We'll see how that goes. thanks http://stackoverflow.com/questions/1803863/how-to-get-the-current-logged-on-user-including-domain-in-delphi-2009/1804139#1804139 Comment by Steve on How to get the current logged on user, including domain in Delphi 2009? Steve 2009-11-26T17:12:04Z 2009-11-26T17:12:04Z The Delphi application is a simple COM object. I create a reference to it, then create an instance of the object, and call the method. But I can only pass standard COM types as parameters unless I get into custom marshaling. http://stackoverflow.com/questions/1803863/how-to-get-the-current-logged-on-user-including-domain-in-delphi-2009/1804139#1804139 Comment by Steve on How to get the current logged on user, including domain in Delphi 2009? Steve 2009-11-26T16:33:05Z 2009-11-26T16:33:05Z I'm not sure what my Delphi application can or would do with the identity context once it get's it. Remember Delphi is Win32 http://stackoverflow.com/questions/1803863/how-to-get-the-current-logged-on-user-including-domain-in-delphi-2009/1804590#1804590 Comment by Steve on How to get the current logged on user, including domain in Delphi 2009? Steve 2009-11-26T16:30:15Z 2009-11-26T16:30:15Z I have tried that as well. Same problem. http://stackoverflow.com/questions/1803863/how-to-get-the-current-logged-on-user-including-domain-in-delphi-2009/1804139#1804139 Comment by Steve on How to get the current logged on user, including domain in Delphi 2009? Steve 2009-11-26T15:10:38Z 2009-11-26T15:10:38Z The asp.net application returns the impersonated credentials. So I know that is setup correctly. http://stackoverflow.com/questions/1744508/why-does-delphi-2009-sometimes-more-often-that-not-insist-i-build/1744785#1744785 Comment by Steve on Why does Delphi 2009 sometimes (more often that not) insist I build? Steve 2009-11-18T11:41:24Z 2009-11-18T11:41:24Z I haven't actually found the problem yet, but I'm 99.9% sure you are correct, so I'm accepting the answer, and will go look for those paths http://stackoverflow.com/questions/1744508/why-does-delphi-2009-sometimes-more-often-that-not-insist-i-build/1744785#1744785 Comment by Steve on Why does Delphi 2009 sometimes (more often that not) insist I build? Steve 2009-11-17T10:26:03Z 2009-11-17T10:26:03Z I don't have any modified delphi units, but your second and third suggestion may be going in the right direction.. http://stackoverflow.com/questions/1744508/why-does-delphi-2009-sometimes-more-often-that-not-insist-i-build/1745066#1745066 Comment by Steve on Why does Delphi 2009 sometimes (more often that not) insist I build? Steve 2009-11-17T10:24:37Z 2009-11-17T10:24:37Z all updates have been installed. http://stackoverflow.com/questions/139844/can-delphi-2009-be-installed-on-the-same-machine-as-delphi-2006-or-delphi-2007/1594837#1594837 Comment by Steve on Can Delphi 2009 be installed on the same machine as Delphi 2006 or Delphi 2007? Steve 2009-10-23T11:06:51Z 2009-10-23T11:06:51Z Rad Studio 5.0 is D2007 and Rad Studio 6.0 is D2009. Just leave both in the path. The only problem you may have is if you run the command line compiler DCC, in which case, you should specify which path you want in your script. http://stackoverflow.com/questions/1482898/online-code-beautifier-and-formatter-for-delphi-or-pascal/1482971#1482971 Comment by Steve on Online Code Beautifier And Formatter for Delphi or Pascal Steve 2009-09-27T17:09:11Z 2009-09-27T17:09:11Z Somehow I missed the online bit...although I guess if you have d2010 you don;t need any other tool online or not. http://stackoverflow.com/questions/1476884/what-does-underscore-mean-in-delphi4/1476901#1476901 Comment by Steve on what does underscore mean in Delphi4 Steve 2009-09-25T13:20:42Z 2009-09-25T13:20:42Z I wouldn't say it's common practice to start variable names in Delphi with an underscore. c and c++ maybe http://stackoverflow.com/questions/1250071/c-standards-style-for-a-delphi-developer/1250077#1250077 Comment by Steve on C# standards/style for a Delphi developer? Steve 2009-08-08T22:52:09Z 2009-08-08T22:52:09Z Just what I was looking for. I guess I could have googled it! Thanks any way.