Quick way to change a property on many forms in a Delphi project? - Stack Overflow most recent 30 from stackoverflow.com2009-11-30T07:41:37Zhttp://stackoverflow.com/feeds/question/441060http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/441060/quick-way-to-change-a-property-on-many-forms-in-a-delphi-project4Quick way to change a property on many forms in a Delphi project?robsoft2009-01-13T22:18:28Z2009-04-01T05:22:30Z
<p>I thought there was something in GExperts to do this, but I can't see it if there is.</p>
<p>I have to change the SCALED property (from the default of TRUE to FALSE) in each form in a project that contains about 100 different forms. Because the default value of SCALED is TRUE, it doesn't actually appear as a line in the .DFM file (when viewing as text), so there isn't anything I can 'get' at with GREP (etc).</p>
<p>Can anyone suggest a quick way of setting this property in all these forms? The forms are subclasses of various different classes and I really don't want to do make some kind of intermediate TForm descendant which overrides the SCALED property - partly because I tried (briefly) to do this and discovered that setting the SCALED property to be false <em>after</em> the inherited create made no difference to the form, and setting it <em>before</em> the inherited create caused an exception. :-)</p>
<p>Anyone got any suggestions? I really want to avoid opening all those forms one by one if I can help it, if only because I'm bound to miss one!</p>
http://stackoverflow.com/questions/441060/quick-way-to-change-a-property-on-many-forms-in-a-delphi-project/441523#4415235Answer by Jim McKeeth for Quick way to change a property on many forms in a Delphi project?Jim McKeeth2009-01-14T01:02:54Z2009-01-14T01:02:54Z<p>I would recommend changing all your forms to descend from a common ancestor. Then in the future you can just change the base class and it will fix it everywhere. </p>
<p>Generally I prefer to always use a custom descendant class over a stock one that I will be using frequently for this specific reason. </p>
http://stackoverflow.com/questions/441060/quick-way-to-change-a-property-on-many-forms-in-a-delphi-project/442241#4422415Answer by mghie for Quick way to change a property on many forms in a Delphi project?mghie2009-01-14T08:05:35Z2009-01-14T08:19:06Z<p>Provided that all your DFM files are not binary, but text (which is a good idea, unless you need to be compatible with Delphi 4 or earlier) you can of course use grep / sed / awk. The format of the DFM is not fixed, and instead of </p>
<pre><code> OldCreateOrder = False
Scaled = False
</code></pre>
<p>it could also contain</p>
<pre><code> OldCreateOrder = False Scaled = False
</code></pre>
<p>So you can grep for one other property that only TForm has, which is set in all of your forms to a value that is stored in the DFM (OldCreateOrder would be a candidate), and replace the lines with another line containing two properties.</p>
<p>The format will be corrected the next time you save that form in the IDE.</p>
<p><strong>Edit:</strong></p>
<p>If your forms are binary, then use the convert.exe tool in Delphi bin directory (use full path, as there is another convert.exe in Windows) to convert the DFM to text, then add the missing property, then (optionally) convert the DFM back to binary. And if you are unhappy about the weird format - convert the DFM from text to binary and back to text, this will give you a correctly formatted text DFM file. All of this is easily scriptable.</p>
http://stackoverflow.com/questions/441060/quick-way-to-change-a-property-on-many-forms-in-a-delphi-project/704161#7041611Answer by mjustin for Quick way to change a property on many forms in a Delphi project?mjustin2009-04-01T05:22:30Z2009-04-01T05:22:30Z<p>Yes, GExpert includes a 'Set Component Properties' expert. It has a 'simulation' mode to see what it will do. This tool is useful to deactivate datasets or database connections before you compile your applications.</p>