Hallo,
ich suche die passende Einstellung in Delphi7 um folgendes Verhalten abzustellen:
if habe Labels auf einer Form mit statischen Positionen. Beispiel (Form ...View as Text:)
Delphi-Quelltext
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14:
| object lWidth: TLabel Left = 8 Top = 110 Width = 48 Height = 13 Caption = 'Line width' Font.Charset = DEFAULT_CHARSET Font.Color = clBlack Font.Height = -11 Font.Name = 'MS Sans Serif' Font.Style = [] ParentFont = False Transparent = True end |
Ich öffne die Form (Datei.dfm) von einem anderen Rechner mit Delphi7 und die Position des Labels ist noch unverändet.
Ich öffne die Unit (Datei.pas) von diesem anderen Rechner und siehe da, die Position der Labels hat sich geändert.
Delphi-Quelltext
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15:
| object lWidth: TLabel
Left = 10 Top = 135 Width = 58 Height = 16 Caption = 'Line width' Font.Charset = DEFAULT_CHARSET Font.Color = clBlack Font.Height = -15 Font.Name = 'MS Sans Serif' Font.Style = [] ParentFont = False Transparent = True end |
wie kann ich das abstellen?
Lukas
Moderiert von
Gausi: Delphi-Tags hinzugefügtModeriert von
Gausi: Topic aus Sonstiges (Delphi) verschoben am Mi 21.01.2009 um 11:10