show/hide this revision's text 2 Use of convert.exe for fixing the formatting

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

  OldCreateOrder = False
  Scaled = False

it could also contain

  OldCreateOrder = False Scaled = False

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.

The format will be corrected the next time you save that form in the IDE.

Edit:

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.

show/hide this revision's text 1

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

  OldCreateOrder = False
  Scaled = False

it could also contain

  OldCreateOrder = False Scaled = False

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.

The format will be corrected the next time you save that form in the IDE.