User Andrew - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T17:01:19Z http://stackoverflow.com/feeds/user/1389 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/131793/i-cant-include-a-version-number-in-this-old-delphi-project-i-inherited-how-do-i/131836#131836 0 Answer by Andrew for I can't include a version number in this old Delphi project I inherited. How do I fix it? Andrew 2008-09-25T07:08:37Z 2008-09-25T07:08:37Z <p>You can create and embed resource files in libraries created under Delphi, by using the $R directive.</p> <p>This <a href="http://msdn.microsoft.com/en-us/library/aa381058(VS.85).aspx" rel="nofollow">link</a> has information relevant to constructing the RES file. Delphi has its own resource compiler: BRCC32</p> http://stackoverflow.com/questions/131729/best-it-programming-technology-related-acronym/131746#131746 16 Answer by Andrew for Best IT/Programming/Technology related Acronym Andrew 2008-09-25T06:43:25Z 2008-09-25T06:43:25Z <p>OK, so it wasn't the real definition, but PCMCIA once got labeled "People Can't Memorise Computer Industry Acronyms"</p> http://stackoverflow.com/questions/53198/helpinsight-documentation-in-delphi-2007 5 HelpInsight documentation in Delphi 2007 Andrew 2008-09-10T00:04:15Z 2008-09-12T02:14:27Z <p>I am using D2007 and am trying to document my source code, using the HelpInsight feature (provided since D2005). I am mainly interested in getting the HelpInsight tool-tips working. From various Web-surfing and experimentation I have found the following:</p> <ol> <li>Using the triple slash (///) comment style works more often than the other documented comment styles. i.e.: <code>{*! comment *}</code> and <code>{! comment }</code></li> <li>The comments must precede the declaration that they are for. For most cases this will mean placing them in the interface section of the code. (The obvious exception is for types and functions that are not accessible from outside the current unit and are therefore declared in the implementation block.) </li> <li>The first comment cannot be for a function. (i.e. it must be for a type - or at least it appears the parser must have seen the "type" keyword before the HelpInsight feature works)</li> </ol> <p>Despite following these "rules", sometimes the Help-insight just doesn't find the comments I've written. One file does not produce the correct HelpInsight tool-tips, but if I include this file in a different dummy project, it works properly.</p> <p>Does anyone have any other pointers / tricks for getting HelpInsight to work?</p> http://stackoverflow.com/questions/56168/test-cases-and-assertion-statements/56189#56189 2 Answer by Andrew for Test Cases AND assertion statements Andrew 2008-09-11T10:06:35Z 2008-09-11T10:06:35Z <p>Don't forget that most languages allow you to turn off assertions... Personally, if I was prepared to write if tests to protect against <strong>all</strong> ranges of invalid input, I wouldn't bother with the assertion in the first place.</p> <p>If, on the other hand you don't write logic to handle all cases (possibly because it's not sensible to try and continue with invalid input) then I would be using the assertion statement and going for the "fail early" approach.</p> http://stackoverflow.com/questions/53198/helpinsight-documentation-in-delphi-2007/55500#55500 1 Answer by Andrew for HelpInsight documentation in Delphi 2007 Andrew 2008-09-10T23:38:48Z 2008-09-10T23:38:48Z <p>I have discovered another caveat (which in my case was what was "wrong")</p> <p>It appears that the unit with the HelpInsight comments <strong>must</strong> be explicitly added to the project. It is not sufficient to simply have the unit in a path that is searched when compiling the project.</p> <p>In other words, the unit must be included in the Project's .dpr / .dproj file. (Using the Project | "Add to Project" menu option)</p> http://stackoverflow.com/questions/21749/multiple-form-delphi-applications-and-dialogs/22105#22105 0 Answer by Andrew for Multiple form Delphi applications and dialogs Andrew 2008-08-22T11:29:17Z 2008-08-22T11:29:17Z <p>I'm not sure I quite understand what you are getting at, but here's a few things I can suggest you can try...</p> <ol> <li>This behaviour changes between different versions of Delphi. I'd suggest that this is due to the hoops they jumped through to support Windows Vista in Delphi 2007.</li> <li>If you are using Delphi 2007, try removing the line from the project source file that sets the Application.MainFormOnTaskBar boolean variable.</li> <li>With this removed, you should be able to use the various Form's BringToFront / SendToBack methods to achieve the Z-ordering that you are after.</li> </ol> <p>I suspect that what you've discovered has been discussed on <a href="http://www.stevetrefethen.com/blog/TheNewVCLPropertyTApplicationMainFormOnTaskbarInDelphi2007.aspx" rel="nofollow">this link</a> Of course, I may have just missed your point entirely, so apologies in advance! </p> http://stackoverflow.com/questions/14504/proportional-font-ide/14510#14510 1 Answer by Andrew for Proportional font IDE Andrew 2008-08-18T12:21:23Z 2008-08-18T12:21:23Z <p>When I last looked at Eclipse (some time ago now!) it allowed you to choose any installed font to work in. Not so sure whether it supported the notion of indenting using tab stops. </p> <p>It looked cool, but the code was definitely harder to read...</p> http://stackoverflow.com/questions/8921/how-can-you-tell-whether-youre-ready-to-start-your-own-blog/13118#13118 0 Answer by Andrew for How can you tell whether you're ready to start your own blog? Andrew 2008-08-16T13:09:43Z 2008-08-16T13:09:43Z <p>If you're thinking about it, then chances are you're ready to start! A blogging schedule is important but make it realistic for you - once a week is a good place to start if you are worried about the pace you can sustain.</p> <p>Don't expect readers will flock to your blog and then you will be pleasantly amazed if/when they do! Regular content updates will probably help build "reader loyalty" and if you post often enough, they will probably "forgive you" if you have an "off post". </p> <p>Good luck!</p> http://stackoverflow.com/questions/13086/delphi-resources-for-existing-net-developer/13115#13115 3 Answer by Andrew for Delphi resources for existing .NET developer. Andrew 2008-08-16T12:58:36Z 2008-08-16T12:58:36Z <p>There's also a Delphi wiki: <a href="http://delphi.wikia.com/wiki/Main_Page" rel="nofollow">http://delphi.wikia.com/wiki/Main_Page</a> This even has a "Beginning Delphi" page with lots of external links on it. (some of them already mentioned)</p> http://stackoverflow.com/questions/11854/inheritance-and-polymorphism-ease-of-use-vs-purity/11868#11868 0 Answer by Andrew for Inheritance and Polymorphism - Ease of use vs Purity Andrew 2008-08-15T01:29:00Z 2008-08-15T01:29:00Z <p>"Doing it right" will have benefits in the long run, if only because someone maintaining the system later will find it easier to comprehend if it was done right to begin with.</p> <p>Depending on the language, you may well have the option of multiple inheritance, but normally simple interfaces make the most sense. By "simple" I mean make an interface that isn't trying to be too much. Better to have lots of simple interfaces and a few monolithic ones. Of course, there is always a trade off, and too many interfaces would probably lead to ones being "forgotten" about...</p> http://stackoverflow.com/questions/131793/i-cant-include-a-version-number-in-this-old-delphi-project-i-inherited-how-do-i/131836#131836 Comment by Andrew on I can't include a version number in this old Delphi project I inherited. How do I fix it? Andrew 2008-09-25T23:02:33Z 2008-09-25T23:02:33Z :-( Given that John answered the question at the same time I was writing mine (and hence I didn't see his) I thought the down-vote was a little harsh! - I also provided a link to resource information <i>and</i> mentioned the resource compiler! It's almost enough to make me stop smiling!