"With" trägt generell nicht zur lesbarkeit von Code bei.
So ist das Ganze viel besser lesbar.
Delphi-Quellcode:
...
Form2.ClientHeight := 104;
Form2.ClientWidth := 185;
Form2.Visible := True;
Form2.edit1.Visible := True;
Form2.edit1.Width := 89;
Form2.edit1.Top := 8;
Form2.edit1.Left := 80;
Form2.edit2.Visible := True;
Form2.edit2.Width := 89;
Form2.edit2.Top := 40;
Form2.edit2.Left := 80;
...
Sollte auch nur ein Tipp sein.