Open old project1 which was created with the original version of TStringGrid --> Stream-Read Error "No property ColWidths". This means that the new version is not backward compatible - I absolutely want to avoid this.
...initialization RegisterPropertyToSkip(TStringGrid, 'ColWidths', 'Mention the reason you removed this property','');end.
procedure SkipObsoleteAxisProperties;const TRANSFORM_NOTE = 'Obsolete, use Transformations instead';begin RegisterPropertyToSkip(TChartAxis, 'Offset', TRANSFORM_NOTE, ''); RegisterPropertyToSkip(TChartAxis, 'Scale', TRANSFORM_NOTE, ''); RegisterPropertyToSkip(TChartAxis, 'Transformation', TRANSFORM_NOTE, '');end;...initialization... SkipObsoleteAxisProperties;