Is there a refactoring tool to remove c blocks? For example, convert
with Form1 do begin Height := Blah; Blubb := Name; end;
to
Form1.Height := Blah; Blubb := Form1.Name;
where Form1 is VCL TForm. Optimally, it should work with Delphi 2007.
with-statement delphi refactoring delphi-2007
Uli gerhardt
source share