Delphi code generation - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T18:46:28Z http://stackoverflow.com/feeds/question/411342 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/411342/delphi-code-generation 1 Delphi code generation Jlouro 2009-01-04T17:34:43Z 2009-01-14T23:03:49Z <p>I need to speed up my coding, too much work, so I need be able to generate code. Any tools, any ideas?</p> http://stackoverflow.com/questions/411342/delphi-code-generation/411373#411373 10 Answer by zendar for Delphi code generation zendar 2009-01-04T17:46:10Z 2009-01-05T01:26:36Z <p>Not a very good idea IMHO. If you need generator, then probably you have lots of code that looks very similar, so instead of generator, better thing would be to rethink and refactor code you have.</p> <p>That should result in less code that is easier to maintain and less code in future for similar tasks.</p> <p>If you are doing database application, then you could use some good visual SQL query builder to help you create queries. That is part that Delphi was not very good (I don't know if it improved in D2007 and D2009) </p> <p><strong>EDIT - Regarding SQL generation</strong></p> <p>There's lots of comments about query builder.<br> Well, I suppose I'm spoiled. As I remember, Delphi before version 6 (or maybe even 5?), had decent visual query builder. I had 0 (zero) bugs in SQL when I selected fields in query designer, opposed to writing SQL by myself. <br> SQL is just string in Delphi, there is no compiler checking, so this was the best way to ensure that SQL is correctly written. <br></p> http://stackoverflow.com/questions/411342/delphi-code-generation/411379#411379 4 Answer by utku_karatas for Delphi code generation utku_karatas 2009-01-04T17:48:43Z 2009-01-04T17:48:43Z <p>If you mean something like a modeling tool, you could try out <a href="http://www.modelmakertools.com/modelmaker/index.html" rel="nofollow">ModelMaker</a>.</p> http://stackoverflow.com/questions/411342/delphi-code-generation/411707#411707 2 Answer by lkessler for Delphi code generation lkessler 2009-01-04T21:29:47Z 2009-01-04T21:29:47Z <p>Rather than trying to code generate, you should probably just obtain code to do the bulk of what you want to do.</p> <p>There are <a href="http://sourceforge.net/search/?type_of_search=soft&amp;words=delphi" rel="nofollow">hundreds of free products at Sourceforge</a> for Delphi.</p> <p>And there are <a href="http://www.google.com/codesearch?as_q=&amp;btnG=Search+Code&amp;hl=en&amp;as_lang=pascal&amp;as_license_restrict=i&amp;as_license=&amp;as_package=&amp;as_filename=&amp;as_case=" rel="nofollow">hundreds of thousands of code samples at Google Code Search</a> that you can use.</p> <p>Plus lots thousands of free or purchaseable components at repositories such as <a href="http://www.torry.net/" rel="nofollow">Torry's Delphi Pages</a> or <a href="http://cc.codegear.com/products.aspx?ProdID=1" rel="nofollow">Embarcadero's Code Central for Delphi</a></p> <p>Using components already made is the fastest way to speed up your coding, and to add capabilities that you would never have been able to.</p> http://stackoverflow.com/questions/411342/delphi-code-generation/411729#411729 0 Answer by moobaa for Delphi code generation moobaa 2009-01-04T21:40:10Z 2009-01-04T21:40:10Z <p>The thing that sped up my Delphi coding the most was getting CodeRush for Delphi (via a <a href="http://www.devexpress.com" rel="nofollow">DevExpress</a> VCL subscription for Delphi 5, 6, 7) and setting up a ton of templates.</p> http://stackoverflow.com/questions/411342/delphi-code-generation/411889#411889 12 Answer by Nick Hodges for Delphi code generation Nick Hodges 2009-01-04T23:17:43Z 2009-01-04T23:17:43Z <p>Delphi includes Live Templates, a completely scriptable and configurable system for generating code constructs of any size or complexity.</p> <p>Live Templates are, in my view, one of the more under-appreciated features in Delphi.</p> <p>Find out how to use them at: <a href="http://delphi.wikia.com/wiki/Delphi_Live_Templates" rel="nofollow">http://delphi.wikia.com/wiki/Delphi_Live_Templates</a></p> <p>and </p> <p><a href="http://delphi.wikia.com/wiki/Live_Templates_Technical_Info" rel="nofollow">http://delphi.wikia.com/wiki/Live_Templates_Technical_Info</a></p> <p>Live templates are completely scriptable, meaning you can write Delphi code to do whatever you want with them.</p> <p>An extendable example can be found here:</p> <p><a href="http://cc.codegear.com/Item/26420" rel="nofollow">http://cc.codegear.com/Item/26420</a></p> http://stackoverflow.com/questions/411342/delphi-code-generation/413525#413525 1 Answer by Edin for Delphi code generation Edin 2009-01-05T15:49:45Z 2009-01-05T15:49:45Z <p>For me best way is by creating custom components, and then create designer for this component.<br /> I have find that i spent most of the time writing code that read/write values from controls. So i created control that can read, write, validate values, and automatically fill form or stored procedure or directly generate SQL and execute. </p> <p>Custom designer allows you to setup all properties easy. Now i don't write code for such trivial task i just put control , open designer and set properties and rules that must be satisfied.</p> http://stackoverflow.com/questions/411342/delphi-code-generation/423195#423195 1 Answer by for Delphi code generation 2009-01-08T03:47:15Z 2009-01-08T03:47:15Z <p>ModelMaker Code Explorer speed up my coding in times. It has a nice hotkeys for synchronising implementation and declaration, so if you changed one, you don't have to search for it pair. Also, very nice feature is, method editing dialog. And many more.</p> http://stackoverflow.com/questions/411342/delphi-code-generation/423725#423725 1 Answer by WishKnew for Delphi code generation WishKnew 2009-01-08T09:46:34Z 2009-01-08T09:46:34Z <p>Have you tried <a href="http://www.gexperts.org/" rel="nofollow">GExpert</a>? It is a set of tools built to increase the productivity of Delphi and C++Builder programmers by adding several features to the IDE. GExperts is developed as Open Source software.</p> <p>Other alternative is using project template by saving a framework into the IDE Repository, create your own components and frames.</p> http://stackoverflow.com/questions/411342/delphi-code-generation/445048#445048 1 Answer by Daniele Teti for Delphi code generation Daniele Teti 2009-01-14T23:03:49Z 2009-01-14T23:03:49Z <p>I wrote a code generator calle CodeTypo. I'm used it in many production environment. You can find it here: <a href="http://dade2000.altervista.org/index.php?page=CodeTypo" rel="nofollow">http://dade2000.altervista.org/index.php?page=CodeTypo</a></p> <p>It's still in beta phase but is usable and reasonably stable.</p> <p>I'll migrate all content of this old site in the new one (www.danieleteti.it) in english. And I'll add some other info about CodeTypo and code generators.</p>