Einzelnen Beitrag anzeigen

Benutzerbild von cookie22
cookie22

Registriert seit: 28. Jun 2006
Ort: Düsseldorf
936 Beiträge
 
Delphi XE2 Professional
 
#5

AW: Unerklärliches aufpoppen des CPU-Fensters

  Alt 26. Feb 2013, 16:37
"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.
Gruß
Cookie
  Mit Zitat antworten Zitat