User Nick Hodges - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T10:19:37Z http://stackoverflow.com/feeds/user/2044 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/732666/converting-tmemorystream-to-string-in-delphi-2009/734488#734488 2 Answer by Nick Hodges for Converting TMemoryStream to String in Delphi 2009 Nick Hodges 2009-04-09T14:30:56Z 2009-11-17T09:04:53Z <p>A "cleaner" way might be:</p> <pre><code>function StreamToString(aStream: TStream): string; var SS: TStringStream; begin if aStream &lt;&gt; 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/453880/how-many-developers-are-there-in-the-world 14 How many developers are there in the world? Nick Hodges 2009-01-17T19:33:16Z 2009-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#1533270 2 Answer by Nick Hodges for delphi 2010 IDE 'error insight' error Nick Hodges 2009-10-07T18:06:37Z 2009-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#1407763 1 Answer by Nick Hodges for Is Delphi 2010 ready for production use? Nick Hodges 2009-09-10T21:12:41Z 2009-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#1407703 1 Answer by Nick Hodges for Get list of object's methods, properties and events? Nick Hodges 2009-09-10T21:02:58Z 2009-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-controls 1 What is "the book" for building ASP.NET Controls? Nick Hodges 2009-08-02T23:35:03Z 2009-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#1375794 6 Answer by Nick Hodges for Does building a Delphi project with MSBuild create .Net dependencies? Nick Hodges 2009-09-03T20:34:47Z 2009-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#1282869 13 Answer by Nick Hodges for Best Delphi Regex library Nick Hodges 2009-08-15T21:18:14Z 2009-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#1276290 7 Answer by Nick Hodges for How to implement multiple inheritance in delphi ? Nick Hodges 2009-08-14T06:08:41Z 2009-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#1210478 6 Answer by Nick Hodges for FastMM svn version Nick Hodges 2009-07-31T02:56:43Z 2009-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#1178564 3 Answer by Nick Hodges for Delphi 2006 always stops working when closed on Vista Nick Hodges 2009-07-24T15:54:01Z 2009-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-informa 1 How does one change the text on the clipboard without altering the format information? Nick Hodges 2009-07-19T16:32:51Z 2009-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-clipboard 5 How do I put some formatted text into the Clipboard? Nick Hodges 2009-07-11T23:06:06Z 2009-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#1120892 5 Answer by Nick Hodges for D2009 TStringlist ansistring Nick Hodges 2009-07-13T17:25:27Z 2009-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#1102139 3 Answer by Nick Hodges for Delphi: Writing to Registry Not Working on FormDestroy Nick Hodges 2009-07-09T06:24:51Z 2009-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#1056489 14 Answer by Nick Hodges for Drawing on a DataModule in Delphi Nick Hodges 2009-06-29T03:47:11Z 2009-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#1054169 5 Answer by Nick Hodges for Problem with Check for updates in RAD studio Nick Hodges 2009-06-28T03:30:48Z 2009-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#226351 17 Answer by Nick Hodges for Scripting library for Delphi Nick Hodges 2008-10-22T15:40:31Z 2009-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#875405 2 Answer by Nick Hodges for Delphi - Database Server Nick Hodges 2009-05-17T20:18:55Z 2009-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#866916 2 Answer by Nick Hodges for BDE Initialization Failure on Vista Nick Hodges 2009-05-15T03:54:52Z 2009-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#822241 13 Answer by Nick Hodges for D2009 problems with array of char - how can I `elegantly` fix my code? Nick Hodges 2009-05-04T21:49:02Z 2009-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#821298 8 Answer by Nick Hodges for Delphi 7: Any differences between compiling under Win XP or Windows Server 2003? Nick Hodges 2009-05-04T18:26:45Z 2009-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#808436 10 Answer by Nick Hodges for Will Delphi be there in future ? Nick Hodges 2009-04-30T18:38:37Z 2009-04-30T18:38:37Z <p>To answer your question:</p> <p>Yes.</p> http://stackoverflow.com/questions/707696/issue-with-component-creation-field-ends-up-nil/707739#707739 10 Answer by Nick Hodges for Issue with component creation: field ends up nil Nick Hodges 2009-04-01T23:32:32Z 2009-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#669501 8 Answer by Nick Hodges for Delphi - Is TClientDataset Thread Safe? Nick Hodges 2009-03-21T15:52:24Z 2009-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#586912 3 Answer by Nick Hodges for Where can I find *newer* looking glyphs for TBitBtn? Nick Hodges 2009-02-25T17:09:45Z 2009-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#551955 13 Answer by Nick Hodges for Is it possible to use WPF and Delphi 2007/09 win32? Nick Hodges 2009-02-16T00:53:37Z 2009-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#548596 10 Answer by Nick Hodges for Array Property, TList, TStringList, or TCollection, etc (Delphi Win32) Nick Hodges 2009-02-14T06:13:15Z 2009-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#533391 6 Answer by Nick Hodges for Are there any static code analysis tools for Delphi/Pascal? Nick Hodges 2009-02-10T17:42:57Z 2009-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#530751 1 Answer by Nick Hodges for Adding a unit to the Interface uses clause rather than the Implementation uses clause Nick Hodges 2009-02-10T01:14:29Z 2009-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/1811615/how-to-share-variables-among-libraries-in-delphi-2009 Comment by Nick Hodges on How to share variables among libraries in Delphi 2009? Nick Hodges 2009-11-28T06:20:52Z 2009-11-28T06:20:52Z First question is why? What is the reason for breaking it down into libraries? What is wrong with a &quot;monolithic EXE&quot;? http://stackoverflow.com/questions/1738838/how-to-disable-the-formatter-in-delphi-2010 Comment by Nick Hodges on How to disable the Formatter in Delphi 2010 Nick Hodges 2009-11-16T05:04:21Z 2009-11-16T05:04:21Z @BruceWell, right, but the point is, what is the problem with its presence? Why the strong need to completely get rid of it? http://stackoverflow.com/questions/1738838/how-to-disable-the-formatter-in-delphi-2010 Comment by Nick Hodges on How to disable the Formatter in Delphi 2010 Nick Hodges 2009-11-16T00:13:05Z 2009-11-16T00:13:05Z How do you even know it is there if you don't explicitly invoke it? http://stackoverflow.com/questions/1585760/when-and-why-should-i-use-tstringbuilder/1585868#1585868 Comment by Nick Hodges on When and Why Should I Use TStringBuilder? Nick Hodges 2009-10-19T00:42:47Z 2009-10-19T00:42:47Z It'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#1557253 Comment by Nick Hodges on Where Can find the full list of winners of Spirit of Delphi Award. Nick Hodges 2009-10-12T23:02:33Z 2009-10-12T23:02:33Z Pierre LeRiche definitely won it one year. http://stackoverflow.com/questions/1555562/how-to-insert-data-dbgrid-to-tlistitem-with-delphi Comment by Nick Hodges on how to insert data DBGrid to TlistItem with delphi? Nick Hodges 2009-10-12T17:45:43Z 2009-10-12T17:45:43Z You'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-doesnt Comment by Nick Hodges on Delphi 5 itemindex select doesn't Nick Hodges 2009-09-25T23:39:35Z 2009-09-25T23:39:35Z Oh, wait, I see -- he is answering his own question... agreed. http://stackoverflow.com/questions/1478589/delphi-5-itemindex-select-doesnt Comment by Nick Hodges on Delphi 5 itemindex select doesn't Nick Hodges 2009-09-25T23:34:22Z 2009-09-25T23:34:22Z How is the trolling? http://stackoverflow.com/questions/1478589/delphi-5-itemindex-select-doesnt Comment by Nick Hodges on Delphi 5 itemindex select doesn't Nick Hodges 2009-09-25T19:48:43Z 2009-09-25T19:48:43Z That code will select the item (i.e., &quot;turn it blue&quot;) as you've asked. Where are you executing/calling the code? http://stackoverflow.com/questions/1473165/drawing-and-not-enough-storage Comment by Nick Hodges on Drawing and Not enough storage?? Nick Hodges 2009-09-24T17:59:06Z 2009-09-24T17:59:06Z You 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#1372215 Comment by Nick Hodges on Single-user source control? Nick Hodges 2009-09-22T22:44:49Z 2009-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#1424497 Comment by Nick Hodges on How can I see the type of a property in the Object Inspector? Nick Hodges 2009-09-15T01:14:35Z 2009-09-15T01:14:35Z Yep, 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#1399059 Comment by Nick Hodges on What is "the book" for building ASP.NET Controls? Nick Hodges 2009-09-13T02:56:21Z 2009-09-13T02:56:21Z Perfect -- thanks. http://stackoverflow.com/questions/1409593/creating-a-singleton-in-delphi-using-the-new-features-of-d2009-and-d2010/1409675#1409675 Comment by Nick Hodges on Creating a singleton in Delphi using the new features of D2009 and D2010 Nick Hodges 2009-09-11T17:39:55Z 2009-09-11T17:39:55Z Great code Moritz. http://stackoverflow.com/questions/1406854/is-delphi-2010-ready-for-production-use/1407763#1407763 Comment by Nick Hodges on Is Delphi 2010 ready for production use? Nick Hodges 2009-09-11T05:42:18Z 2009-09-11T05:42:18Z Okay, answers: Very Stable. No.