User Steve - Stack Overflowmost recent 30 from stackoverflow.com2009-12-15T15:16:21Zhttp://stackoverflow.com/feeds/user/22712http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1893125/how-can-a-shared-event-handler-know-which-controls-event-its-handling/1893414#18934142Answer by Steve for How can a shared event handler know which control's event it's handling?Steve2009-12-12T13:27:28Z2009-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#18668084Answer by Steve for How do I create an instance from a string that provides the class name?Steve2009-12-08T12:58:57Z2009-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<>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<>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-d20104Creating a singleton in Delphi using the new features of D2009 and D2010Steve2009-09-11T08:01:34Z2009-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-20091How to get the current logged on user, including domain in Delphi 2009?Steve2009-11-26T14:08:30Z2009-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-wi5What features of the upcoming Delphi Prism would you like to see in Delphi for win32?Steve2008-11-06T12:41:07Z2009-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#18058440Answer by Steve for Database versioning in installed applications using Delphi.Steve2009-11-26T21:54:28Z2009-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 < AppVersion then
begin
for i := DBVersion+1 to AppVersion do
UpdateStructure(i);
end
else
if DBVersion > 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-t7Why is the executable produced by Delphi 2009 IDE different to that produced on the command line?Steve2009-05-22T11:07:23Z2009-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-net0Windows Authentication in a COM object called from ASP.NETSteve2009-11-25T15:44:56Z2009-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><authentication mode="Windows"/>
<identity impersonate="True"/>
</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#17895460Answer by Steve for Fluid Form Layout in DelphiSteve2009-11-24T11:42:23Z2009-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-build1Why does Delphi 2009 sometimes (more often that not) insist I build?Steve2009-11-16T20:00:49Z2009-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#17444680Answer by Steve for Help with strange Delphi 5 IDE problemsSteve2009-11-16T19:54:29Z2009-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-javascript0How best to redirect a webpage without using Javascript?Steve2009-05-17T19:39:10Z2009-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><noscript>
<META HTTP-EQUIV=REFRESH CONTENT="1; URL=en/index.htm">.
</noscript>
</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#16912624Answer by Steve for more memory for TMemo / TRichEditSteve2009-11-06T23:38:42Z2009-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-20079Can Delphi 2009 be installed on the same machine as Delphi 2006 or Delphi 2007?Steve2008-09-26T14:23:30Z2009-10-20T14:02:42Z
<p>Is there any conflict?</p>
http://stackoverflow.com/questions/1499717/eoutofmemory-creating-large-xml-using-delphi/1500928#15009280Answer by Steve for EOutOfMemory Creating Large XML Using DelphiSteve2009-09-30T22:12:45Z2009-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#14972828Answer by Steve for What is the accepted way to use frames in Delphi?Steve2009-09-30T10:33:27Z2009-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-oxygene1Lambda Expressions in Delphi Prism/OxygeneSteve2008-11-06T21:26:48Z2009-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<int32, int32>;
fib := n -> iif(n > 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#14829710Answer by Steve for Online Code Beautifier And Formatter for Delphi or PascalSteve2009-09-27T07:05:50Z2009-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#14765982Answer by Steve for Optional parameters in Active X librariesSteve2009-09-25T10:42:46Z2009-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#14095610Answer by Steve for Get list of object's methods, properties and events? Steve2009-09-11T07:55:52Z2009-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#13841730Answer by Steve for Does building a Delphi project with MSBuild create .Net dependencies?Steve2009-09-05T20:19:54Z2009-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#13441381Answer by Steve for "ERROR MSB4040 There is no target in the project" when using msbuild+Delphi2009Steve2009-08-27T22:43:11Z2009-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-net1How do I setup Multiple Triggers for Cruisecontrol.NET?Steve2009-08-13T18:00:35Z2009-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-developer2C# standards/style for a Delphi developer?Steve2009-08-08T22:45:11Z2009-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-03Testing D2009 application with Test Complete 7.0Steve2009-07-02T14:33:04Z2009-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#11989592Answer by Steve for Testing D2009 application with Test Complete 7.0Steve2009-07-29T09:08:55Z2009-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#11786920Answer by Steve for Delphi 2006 always stops working when closed on VistaSteve2009-07-24T16:17:27Z2009-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#11158662Answer by Steve for Why Do You Use Delphi?Steve2009-07-12T11:31:15Z2009-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-c3How do you format your Compound Statements in Delphi and C#?Steve2008-11-14T10:31:12Z2009-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#10828871Answer by Steve for Creating Compressed (Zipped) Folder using DelphiSteve2009-07-04T20:04:07Z2009-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#1866808Comment by Steve on How do I create an instance from a string that provides the class name?Steve2009-12-08T14:05:11Z2009-12-08T14:05:11ZI 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#1857089Comment by Steve on Is there a way to make the "Code Folding" Stay Folded In Delphi 2010Steve2009-12-08T13:04:58Z2009-12-08T13:04:58ZActually 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#1804139Comment by Steve on How to get the current logged on user, including domain in Delphi 2009?Steve2009-11-26T21:40:32Z2009-11-26T21:40:32ZIt was in fact an STA COM object. So it all makes sense, and the answer is perfect. Thankshttp://stackoverflow.com/questions/1803863/how-to-get-the-current-logged-on-user-including-domain-in-delphi-2009/1804139#1804139Comment by Steve on How to get the current logged on user, including domain in Delphi 2009?Steve2009-11-26T18:57:28Z2009-11-26T18:57:28ZThat 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. thankshttp://stackoverflow.com/questions/1803863/how-to-get-the-current-logged-on-user-including-domain-in-delphi-2009/1804139#1804139Comment by Steve on How to get the current logged on user, including domain in Delphi 2009?Steve2009-11-26T17:12:04Z2009-11-26T17:12:04ZThe 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#1804139Comment by Steve on How to get the current logged on user, including domain in Delphi 2009?Steve2009-11-26T16:33:05Z2009-11-26T16:33:05ZI'm not sure what my Delphi application can or would do with the identity context once it get's it. Remember Delphi is Win32http://stackoverflow.com/questions/1803863/how-to-get-the-current-logged-on-user-including-domain-in-delphi-2009/1804590#1804590Comment by Steve on How to get the current logged on user, including domain in Delphi 2009?Steve2009-11-26T16:30:15Z2009-11-26T16:30:15ZI 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#1804139Comment by Steve on How to get the current logged on user, including domain in Delphi 2009?Steve2009-11-26T15:10:38Z2009-11-26T15:10:38ZThe 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#1744785Comment by Steve on Why does Delphi 2009 sometimes (more often that not) insist I build?Steve2009-11-18T11:41:24Z2009-11-18T11:41:24ZI 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 pathshttp://stackoverflow.com/questions/1744508/why-does-delphi-2009-sometimes-more-often-that-not-insist-i-build/1744785#1744785Comment by Steve on Why does Delphi 2009 sometimes (more often that not) insist I build?Steve2009-11-17T10:26:03Z2009-11-17T10:26:03ZI 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#1745066Comment by Steve on Why does Delphi 2009 sometimes (more often that not) insist I build?Steve2009-11-17T10:24:37Z2009-11-17T10:24:37Zall 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#1594837Comment by Steve on Can Delphi 2009 be installed on the same machine as Delphi 2006 or Delphi 2007?Steve2009-10-23T11:06:51Z2009-10-23T11:06:51ZRad 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#1482971Comment by Steve on Online Code Beautifier And Formatter for Delphi or PascalSteve2009-09-27T17:09:11Z2009-09-27T17:09:11ZSomehow 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#1476901Comment by Steve on what does underscore mean in Delphi4 Steve2009-09-25T13:20:42Z2009-09-25T13:20:42ZI wouldn't say it's common practice to start variable names in Delphi with an underscore. c and c++ maybehttp://stackoverflow.com/questions/1250071/c-standards-style-for-a-delphi-developer/1250077#1250077Comment by Steve on C# standards/style for a Delphi developer?Steve2009-08-08T22:52:09Z2009-08-08T22:52:09ZJust what I was looking for. I guess I could have googled it! Thanks any way.