Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a visual component that I built from a TFrame (but then registered to the palette, etc); it works great and I loved being able to build it VISUALLY using the IDE.

I would now like to create a "family" of related components, and to do so, would like to create a superclass of this component, and then inherit this component and others from there.

There are a lot of ways to do this, I'm sure, but I'm finding myself wondering: Is there a tool that will convert *.DFM files (i.e. Forms or TFrames) to raw Object Pascal constructor code? Thinking of where it w/b nice to begin w/a visual form or TFrame, but then break from that inheritance at some point, and replace the constructor w/what is essentially a replacement for streaming from the DFM file.

As always, all thoughts / input appreciated.

share|improve this question

closed as not constructive by casperOne Nov 20 '12 at 0:07

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

3 Answers

up vote 7 down vote accepted

GExperts "Component To Code", generate the code for selected components. Property like images you have to sign by yourself.

share|improve this answer

A little curious why you'd want to do this at first glance... You can inherit from forms/frames in the IDE.

Depends on your version of Delphi, in Delphi 2009, File->New and then select Inheritable Items and pick the Form/Frame of yours that you want to inherit from. In previous versions, you'd pick File-New and there would be a tab for the project's name and a list of all the projects forms to select from.

It's quite handy! You end up with different flavors of Forms/Frames and just about everything you create afterwards is a descendant of one of them.

share|improve this answer
Thanks for your input on this. I'm playing with both approaches now for this set of problems. – Jamo Feb 24 '09 at 9:09

I second the GExperts comment by Cesar, and would add that images can be included (and names) in Resource files and then INCed into the PAS file.

share|improve this answer

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