The Delphi form designer is very good but we need to work directly from source. Is there a tool or script that can take a batch of DFM files and convert them to Delphi source code?

link|improve this question

Provided the dfm files are in text format, it is readable in any text editor. To programatically operate on these files, see [longevity-of-using-the-delphi-text-dfm-format-for-my-own-store-and-retriev](htt‌​p://stackoverflow.com/questions/4171998/longevity-of-using-the-delphi-text-dfm-fo‌​rmat-for-my-own-store-and-retrieve) There are TReader and TWriter classes, well documented, for these operations. – LU RD Sep 7 '11 at 11:18
The forms are in text format so a non delphi IDE tool is usable/desirable – MX4399 Sep 7 '11 at 11:35
GExperts source is available as ToTo and Rudy says. – LU RD Sep 7 '11 at 11:49
I don't understand the rationale behind this question. Text DFM files are just as editable as text PAS files. DFM files are part of the source of your program, so working "directly from source" doesn't preclude working on DFM files. – Rob Kennedy Sep 7 '11 at 13:51
Please clarify the question: do you need Pascal source, or the text representation of the DFM? – Chris Thornton Sep 7 '11 at 13:59
show 8 more comments
feedback

1 Answer

up vote 14 down vote accepted

You can use the ComponentsToCode function from GExperts

link|improve this answer
No batch mode and it does it for selected controls to the clipboard – MX4399 Sep 7 '11 at 11:15
5  
But the sources should make it easy to turn this into a batch mode converter. – Rudy Velthuis Sep 7 '11 at 11:22
1  
Beware that GExperts cannot handle every control under the sun. Most will work though. – dummzeuch Sep 7 '11 at 12:36
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.