I have a codebase that I'm working on that is written to work in both Delphi 5 and Delphi 10.2, until we get everything converted to D10.
Whenever I open a DFM file in 10.2 and save it, it automatically adds a DesignSize
property to the TForm
. This property doesn't exist in D5, so I get errors every time I open the same DFM in D5.
Is there any way to prevent D10 from auto-updating the DFM? Or is this not possible?