User Nick Hodges - Stack Overflowmost recent 30 from stackoverflow.com2009-11-08T14:54:14Zhttp://stackoverflow.com/feeds/user/2044http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/453880/how-many-developers-are-there-in-the-world14How many developers are there in the world?Nick Hodges2009-01-17T19:33:16Z2009-11-01T08:02:10Z
<p>What is the total number of software developers in the world?</p>
<p>And to respond to the inevitable "How do you define a software developer?" -- I'll answer two ways:</p>
<ol>
<li>Define it as "Anyone who writes code to make a computer do something he wants done".</li>
<li>Define it however you like and then answer the question</li>
</ol>
<p>References to studies or more authoritative sources of information would be greatly appreciated.</p>
http://stackoverflow.com/questions/1533107/delphi-2010-ide-error-insight-error/1533270#15332702Answer by Nick Hodges for delphi 2010 IDE 'error insight' errorNick Hodges2009-10-07T18:06:37Z2009-10-07T18:06:37Z<p>Francis--</p>
<p>It is very likely that your files have some issues with their line endings. </p>
<p>Has the file ever been opened in another editor besides Delphi?</p>
<p>You can check this way: Copy all of the code onto the clipboard, paste it into Notepad, copy it all out of notepad, and then paste it back into the editor. That should clean up all the line endings. See if that makes a difference.</p>
http://stackoverflow.com/questions/1406854/is-delphi-2010-ready-for-production-use/1407763#14077631Answer by Nick Hodges for Is Delphi 2010 ready for production use?Nick Hodges2009-09-10T21:12:41Z2009-09-10T21:12:41Z<p>To answer your question: Yes.</p>
http://stackoverflow.com/questions/1406436/get-list-of-objects-methods-properties-and-events/1407703#14077031Answer by Nick Hodges for Get list of object's methods, properties and events? Nick Hodges2009-09-10T21:02:58Z2009-09-10T21:02:58Z<p>In the immortal words of Obi Wan Kenobi -- "Use the source".</p>
<p>There is no substitute for reading and understanding the source code of a component (or anything) to understand what it does and what it is up to. </p>
<p>Source code is the Lingua Franca of programming. </p>
http://stackoverflow.com/questions/1220178/what-is-the-book-for-building-asp-net-controls1What is "the book" for building ASP.NET Controls?Nick Hodges2009-08-02T23:35:03Z2009-09-09T11:18:04Z
<p>Back in the glory days of ASP.NET 1.1, I bought "Developing Microsoft ASP.NET Server Controls and Components" by Nikhil Kothari and Vandana Datye. I loved this book -- I read it and read it and developed all kinds of cool controls using it. I got my money's worth -- you should see the book, it's totally destroyed. It was probably the best technical book I've ever bought.</p>
<p>But of course, this book was written for the 1.1 framework and only covered server controls, and while much of the content is still valid, there is certainly a lot of new things about building ASP.NET controls is the newest frameworks for both the client and the server. So my question is this:</p>
<p>Is there a book out there for building ASP.NET controls that covers the latest frameworks (AJAX, MVC, server side, the works....) and which is as good as the Kothari/Datye book? </p>
<p>I see a number of books out there on the topic, but I'm afraid that I've been spoiled and that I'll get one that doesn't measure up to the standards set by Kothari and Datye.</p>
<p>Thanks --</p>
http://stackoverflow.com/questions/1375104/does-building-a-delphi-project-with-msbuild-create-net-dependencies/1375794#13757946Answer by Nick Hodges for Does building a Delphi project with MSBuild create .Net dependencies?Nick Hodges2009-09-03T20:34:47Z2009-09-03T20:34:47Z<p>So to be clear: the answer to your question is:</p>
<p>No</p>
http://stackoverflow.com/questions/1282749/best-delphi-regex-library/1282869#128286913Answer by Nick Hodges for Best Delphi Regex libraryNick Hodges2009-08-15T21:18:14Z2009-08-15T21:18:14Z<p>Jan Goyvaerts is the guy for Delphi regular expressions. </p>
<p><a href="http://www.regular-expressions.info/delphi.html" rel="nofollow">http://www.regular-expressions.info/delphi.html</a></p>
<p>He has a nice set of classes based on the PCRE libraries that can be compiled into your Delphi applications.</p>
<p>He's the author of RegexBuddy, a popular application built with Delphi.</p>
<p><a href="http://www.regexbuddy.com/delphi.html" rel="nofollow">http://www.regexbuddy.com/delphi.html</a></p>
http://stackoverflow.com/questions/1276173/how-to-implement-multiple-inheritance-in-delphi/1276290#12762907Answer by Nick Hodges for How to implement multiple inheritance in delphi ?Nick Hodges2009-08-14T06:08:41Z2009-08-14T06:08:41Z<p>Use interfaces. Something like this (Off the top of my head, based on your description.....)</p>
<pre><code>type
IBikeWheel = interface
...
end;
IXYZ = interface
...
end;
IFrontWheel = interface(IBikeWheel)
...
end;
TBike = class
...
end;
TBikeWheel = class(TObject, IBikeWheel);
TBikeWheelXYZ = class(TBikeWheel, IXYZ);
TBikeFrontWheelXYZ = class(TBikeWheelXYZ, IFrontWheel);
</code></pre>
<p>Then implement classes for the interfaces that do what the corresponding classes in your old (presumably C/C++) library does and instantiate them in the corresponding class's constructor. </p>
http://stackoverflow.com/questions/1210348/fastmm-svn-version/1210478#12104786Answer by Nick Hodges for FastMM svn versionNick Hodges2009-07-31T02:56:43Z2009-07-31T02:56:43Z<p>You can, sure, but it is up to you to determine if this build is stable enough for your application. Pierre does excellent, amazing work, but of course, one should carefully examine and test your application before making such a determination.</p>
http://stackoverflow.com/questions/1177107/delphi-2006-always-stops-working-when-closed-on-vista/1178564#11785643Answer by Nick Hodges for Delphi 2006 always stops working when closed on VistaNick Hodges2009-07-24T15:54:01Z2009-07-24T15:54:01Z<p>99.954% of all shutdown errors in Delphi are caused by a poorly written component or expert. Do you have components that you think might be the problem? </p>
<p>You can try removing component sets and other plugins one at a time and see if that reveals the culprit. Or you could try starting a second instance of the IDE and attach it to the first and use the debugger to see if it reveals any clues as to what is causing the problem.</p>
http://stackoverflow.com/questions/1150265/how-does-one-change-the-text-on-the-clipboard-without-altering-the-format-informa1How does one change the text on the clipboard without altering the format information?Nick Hodges2009-07-19T16:32:51Z2009-07-20T06:35:24Z
<p>Another clipboard question: </p>
<p>When text is put onto the clipboard, it frequently goes in multiple ways, usually with and without formatting information. What I want to know is this -- how do you change the text on the clipboard without altering the formatting. In other words, I want to change the text side of things, but keep the formatting exactly the same.</p>
<p>This is again for my "TextScrubber" application where I want to remove line breaks from the text on the clipboard, but I don't want to alter the format info about that text. </p>
<p>I'm hoping that I don't have to "brute force" it by iterating over all the formats present, storing each, and then reinserting them after the text has been scrubbed.</p>
http://stackoverflow.com/questions/1114883/how-do-i-put-some-formatted-text-into-the-clipboard5How do I put some formatted text into the Clipboard?Nick Hodges2009-07-11T23:06:06Z2009-07-17T12:33:29Z
<p>I'm writing a unit test for a "Text Scrubber" utility that will remove any formatting, etc. from the text on the clipboard.</p>
<p>For example, if you copy some text from a Word document or a web page with tons of formatting, you may want to paste it into another Word DOC as normal, plain old text.</p>
<p>To write a unit test for this, I need, of course, to write code that actually puts some formatted text into the clipboard. </p>
<p>So my question is -- how do I do that in Delphi code?</p>
http://stackoverflow.com/questions/1119920/d2009-tstringlist-ansistring/1120892#11208925Answer by Nick Hodges for D2009 TStringlist ansistringNick Hodges2009-07-13T17:25:27Z2009-07-13T17:48:41Z<p>TStringList.LoadFromFile/SaveToFile also take an optional parameter of type TEncoding, that allows you to use TStringList to store any type of string that you want.</p>
<pre><code>procedure LoadFromFile(const FileName: string; Encoding: TEncoding); overload; virtual;
procedure SaveToFile(const FileName: string; Encoding: TEncoding); overload; virtual;
</code></pre>
<p>Also note that by default, TStringList uses ANSI as the codepage so that all existing code works as it has.</p>
http://stackoverflow.com/questions/1101484/delphi-writing-to-registry-not-working-on-formdestroy/1102139#11021393Answer by Nick Hodges for Delphi: Writing to Registry Not Working on FormDestroyNick Hodges2009-07-09T06:24:51Z2009-07-09T06:24:51Z<p>Are you actually ever destroying the form?</p>
<p>By default, forms are auto-created, and "closing" them doesn't destroy them, it just hides them. </p>
<p>If you aren't actually calling "MyForm.Free" or setting Action to caFree in the OnClose event, the form is never getting destroyed, and hence the OnDestroy event is never getting fired, and your code is never getting called.</p>
http://stackoverflow.com/questions/1056472/drawing-on-a-datamodule-in-delphi/1056489#105648914Answer by Nick Hodges for Drawing on a DataModule in DelphiNick Hodges2009-06-29T03:47:11Z2009-06-29T03:47:11Z<p>TDataModule is a direct descendant of TComponent, and as such, it doens't have a Canvas or any such painting provisioned in it. As is, there is no way to draw or paint on it.</p>
<p>It is conceivable that you could create a descendent that has a TCanvas, but you'd have to really hack into the IDE to get it to be drawn on at design-time. It is an interesting idea, however. </p>
<p>There used to be a "Diagram" tab on the designer for Datamodules. It did have the ability to put notes, boxes with text, and data relations. It was not very understood or used, and the feature was dropped, I guess. (Before my time at CodeGear...)</p>
http://stackoverflow.com/questions/1053541/problem-with-check-for-updates-in-rad-studio/1054169#10541695Answer by Nick Hodges for Problem with Check for updates in RAD studioNick Hodges2009-06-28T03:30:48Z2009-06-28T03:30:48Z<p>Registered users can download the updates here:</p>
<p><a href="http://cc.embarcadero.com/reg/delphi" rel="nofollow">http://cc.embarcadero.com/reg/delphi</a></p>
<p>You can also get a number of "freebies" there including the TMS Smooth Controls, the InfoPower Essentials, and Marco Cantus "Delphi 2009 Handbook" as a PDF.</p>
http://stackoverflow.com/questions/226135/scripting-library-for-delphi/226351#22635117Answer by Nick Hodges for Scripting library for DelphiNick Hodges2008-10-22T15:40:31Z2009-05-24T08:28:53Z<p>I'd strongly recommend <a href="http://www.remobjects.com/ps.aspx" rel="nofollow">PascalScript from RemObjects</a>.</p>
http://stackoverflow.com/questions/872538/delphi-database-server/875405#8754052Answer by Nick Hodges for Delphi - Database ServerNick Hodges2009-05-17T20:18:55Z2009-05-17T20:18:55Z<p>Interbase is as reliable as they come. In fact, I'd like to get a job as an Interbase DBA, because I could uses the sleep.</p>
http://stackoverflow.com/questions/866485/bde-initialization-failure-on-vista/866916#8669162Answer by Nick Hodges for BDE Initialization Failure on VistaNick Hodges2009-05-15T03:54:52Z2009-05-15T03:54:52Z<p>This article covers that exact topic:</p>
<p><a href="http://www.stockblocks.com/support/bde/vista%5Fbde%5Fconfiguration.htm" rel="nofollow">http://www.stockblocks.com/support/bde/vista_bde_configuration.htm</a></p>
http://stackoverflow.com/questions/822229/d2009-problems-with-array-of-char-how-can-i-elegantly-fix-my-code/822241#82224113Answer by Nick Hodges for D2009 problems with array of char - how can I `elegantly` fix my code?Nick Hodges2009-05-04T21:49:02Z2009-05-04T21:49:02Z<p>You can set your buffer to </p>
<pre><code>var
buffer: array[0..2] of AnsiChar;
</code></pre>
<p>and you'll read in the exact same thing as before.</p>
http://stackoverflow.com/questions/820807/delphi-7-any-differences-between-compiling-under-win-xp-or-windows-server-2003/821298#8212988Answer by Nick Hodges for Delphi 7: Any differences between compiling under Win XP or Windows Server 2003?Nick Hodges2009-05-04T18:26:45Z2009-05-04T18:26:45Z<p>The compiler itself won't care, and will produce the same code regardless.</p>
http://stackoverflow.com/questions/805475/will-delphi-be-there-in-future/808436#8084369Answer by Nick Hodges for Will Delphi be there in future ?Nick Hodges2009-04-30T18:38:37Z2009-04-30T18:38:37Z<p>To answer your question:</p>
<p>Yes.</p>
http://stackoverflow.com/questions/732666/converting-tmemorystream-to-string-in-delphi-2009/734488#7344881Answer by Nick Hodges for Converting TMemoryStream to String in Delphi 2009Nick Hodges2009-04-09T14:30:56Z2009-04-09T14:30:56Z<p>A "cleaner" way might be:</p>
<pre><code>function StreamToString(aStream: TStream): string;
var
SS: TStringStream;
begin
if aStream <> nil then
begin
SS := TStringStream.Create('');
try
aStream.Position :- 0;
SS.CopyFrom(aStream, aStream.Size);
Result := SS.DataString;
finally
SS.Free;
end;
end else
begin
Result := '';
end;
end;
</code></pre>
http://stackoverflow.com/questions/707696/issue-with-component-creation-field-ends-up-nil/707739#70773910Answer by Nick Hodges for Issue with component creation: field ends up nilNick Hodges2009-04-01T23:32:32Z2009-04-01T23:32:32Z<p>You need to override your constructor, and then call inherited as the /first/ thing in that constructor.</p>
<pre><code> public
constructor Create(AOwner: TComponent); override;
constructor TcmTPCustomDataConnector.Create(AOwner: TComponent);
begin
inherited Create(AOwner); // TODO : check duplicate
ShowMessage('TcmTPCustomDataConnector.Create entered.');
FObservingDataPanels := TList.Create();
end;
</code></pre>
http://stackoverflow.com/questions/669319/delphi-is-tclientdataset-thread-safe/669501#6695018Answer by Nick Hodges for Delphi - Is TClientDataset Thread Safe?Nick Hodges2009-03-21T15:52:24Z2009-03-21T15:52:24Z<p>In a word: No.</p>
<p>All of the VCL should be considered "thread unsafe". Any calls to visual components in a TThread should be made in a Synchronize event.</p>
<p>Any VCL/RTL class should be created and destroyed entirely within a TThread.</p>
http://stackoverflow.com/questions/586226/where-can-i-find-newer-looking-glyphs-for-tbitbtn/586912#5869123Answer by Nick Hodges for Where can I find *newer* looking glyphs for TBitBtn?Nick Hodges2009-02-25T17:09:45Z2009-02-25T17:09:45Z<p>You have a pretty nice set of components on your harddrive:</p>
<p>C:\Program Files\Common Files\CodeGear Shared\Images\GlyFX</p>
http://stackoverflow.com/questions/551932/is-it-possible-to-use-wpf-and-delphi-2007-09-win32/551955#55195513Answer by Nick Hodges for Is it possible to use WPF and Delphi 2007/09 win32?Nick Hodges2009-02-16T00:53:37Z2009-02-16T00:53:37Z<p>Yes, you can, with a product called "Hydra" from RemObjects:</p>
<p><a href="http://www.remobjects.com/hydra.aspx" rel="nofollow">http://www.remobjects.com/hydra.aspx</a></p>
<p>They have a demo showing embedding a WPF graph in a Win32 application.</p>
<p>As Ken White notes, you can develop all your .Net stuff in Delphi Prism. It can then be leveraged in Win32 using Hydra if you like.</p>
http://stackoverflow.com/questions/548567/array-property-tlist-tstringlist-or-tcollection-etc-delphi-win32/548596#54859610Answer by Nick Hodges for Array Property, TList, TStringList, or TCollection, etc (Delphi Win32)Nick Hodges2009-02-14T06:13:15Z2009-02-14T06:13:15Z<p>If they are properties, you can descend from TCollection, and then the IDE and Object Inspector will automatically provide support for them via the TCollection Property editor.</p>
http://stackoverflow.com/questions/532986/are-there-any-static-code-analysis-tools-for-delphi-pascal/533391#5333916Answer by Nick Hodges for Are there any static code analysis tools for Delphi/Pascal?Nick Hodges2009-02-10T17:42:57Z2009-02-10T17:42:57Z<p>The Architect version of Delphi has a very powerful Audits and Metrics feature that does a complete analysis of your code. The feature provides a complete analysis of your source code. A very under appreciated feature, I think.</p>
http://stackoverflow.com/questions/528472/adding-a-unit-to-the-interface-uses-clause-rather-than-the-implementation-uses-cl/530751#5307511Answer by Nick Hodges for Adding a unit to the Interface uses clause rather than the Implementation uses clauseNick Hodges2009-02-10T01:14:29Z2009-02-10T01:14:29Z<p>I put all references in the implementation section and only put those unit names in the interface that I have to.</p>
<p>I like to limit the scope of everything as much as possible, though, and this policy is pursuant to that.</p>
http://stackoverflow.com/questions/1585760/when-and-why-should-i-use-tstringbuilder/1585868#1585868Comment by Nick Hodges on When and Why Should I Use TStringBuilder?Nick Hodges2009-10-19T00:42:47Z2009-10-19T00:42:47ZIt's not true that it was introduced solely for source code compatibility. That was part of it, but another strong reason is that it is a powerful class to use, and because some people prefer it's ability to do the fluent coding pattern. Bottom line -- use it if you want, don't use it if you don't want.http://stackoverflow.com/questions/1556929/where-can-find-the-full-list-of-winners-of-spirit-of-delphi-award/1557253#1557253Comment by Nick Hodges on Where Can find the full list of winners of Spirit of Delphi Award.Nick Hodges2009-10-12T23:02:33Z2009-10-12T23:02:33ZPierre LeRiche definitely won it one year.http://stackoverflow.com/questions/1555562/how-to-insert-data-dbgrid-to-tlistitem-with-delphiComment by Nick Hodges on how to insert data DBGrid to TlistItem with delphi?Nick Hodges2009-10-12T17:45:43Z2009-10-12T17:45:43ZYou'll have to provide a lot more detail here on what it is you want to do.http://stackoverflow.com/questions/1478589/delphi-5-itemindex-select-doesntComment by Nick Hodges on Delphi 5 itemindex select doesn'tNick Hodges2009-09-25T23:39:35Z2009-09-25T23:39:35ZOh, wait, I see -- he is answering his own question... agreed.http://stackoverflow.com/questions/1478589/delphi-5-itemindex-select-doesntComment by Nick Hodges on Delphi 5 itemindex select doesn'tNick Hodges2009-09-25T23:34:22Z2009-09-25T23:34:22ZHow is the trolling?http://stackoverflow.com/questions/1478589/delphi-5-itemindex-select-doesntComment by Nick Hodges on Delphi 5 itemindex select doesn'tNick Hodges2009-09-25T19:48:43Z2009-09-25T19:48:43ZThat code will select the item (i.e., "turn it blue") as you've asked.
Where are you executing/calling the code?http://stackoverflow.com/questions/1473165/drawing-and-not-enough-storageComment by Nick Hodges on Drawing and Not enough storage??Nick Hodges2009-09-24T17:59:06Z2009-09-24T17:59:06ZYou are going to have to provide a whole lot more details about what you are trying to do to get a decent answer.http://stackoverflow.com/questions/1372073/single-user-source-control/1372215#1372215Comment by Nick Hodges on Single-user source control?Nick Hodges2009-09-22T22:44:49Z2009-09-22T22:44:49Z+1 for VisualSVNServer. Pathetically easy to get up and running.http://stackoverflow.com/questions/1424481/how-can-i-see-the-type-of-a-property-in-the-object-inspector/1424497#1424497Comment by Nick Hodges on How can I see the type of a property in the Object Inspector?Nick Hodges2009-09-15T01:14:35Z2009-09-15T01:14:35ZYep, I agree -- that would be a good thing to add. Put it into the VCL/RTL section of <a href="http://delphi.uservoice.com" rel="nofollow">delphi.uservoice.com</a>http://stackoverflow.com/questions/1220178/what-is-the-book-for-building-asp-net-controls/1399059#1399059Comment by Nick Hodges on What is "the book" for building ASP.NET Controls?Nick Hodges2009-09-13T02:56:21Z2009-09-13T02:56:21ZPerfect -- thanks.http://stackoverflow.com/questions/1409593/creating-a-singleton-in-delphi-using-the-new-features-of-d2009-and-d2010/1409675#1409675Comment by Nick Hodges on Creating a singleton in Delphi using the new features of D2009 and D2010Nick Hodges2009-09-11T17:39:55Z2009-09-11T17:39:55ZGreat code Moritz.http://stackoverflow.com/questions/1406854/is-delphi-2010-ready-for-production-use/1407763#1407763Comment by Nick Hodges on Is Delphi 2010 ready for production use?Nick Hodges2009-09-11T05:42:18Z2009-09-11T05:42:18ZOkay, answers: Very Stable. No.http://stackoverflow.com/questions/1407558/does-delphi-vcl-provide-a-regular-expression-libraryComment by Nick Hodges on Does Delphi VCL provide a regular expression library ?Nick Hodges2009-09-10T20:49:22Z2009-09-10T20:49:22ZFolks might consider casting some votes for this:
<a href="http://delphi.uservoice.com/pages/4432-general/suggestions/145172-regexp-support-in-native-delphi" rel="nofollow">delphi.uservoice.com/pages/4432-general/…</a>http://stackoverflow.com/questions/1403505/how-i-can-declare-a-global-method-in-delphi-prism/1403578#1403578Comment by Nick Hodges on How i can declare a global method in delphi prismNick Hodges2009-09-10T14:13:56Z2009-09-10T14:13:56ZBy the way, I note that this answer is utterly incorrect. I voted to delete it.http://stackoverflow.com/questions/1403505/how-i-can-declare-a-global-method-in-delphi-prism/1403578#1403578Comment by Nick Hodges on How i can declare a global method in delphi prismNick Hodges2009-09-10T14:12:14Z2009-09-10T14:12:14Z/I/ didn't link to the hyphenated site!