Einzelnen Beitrag anzeigen

Delphi.Narium

Registriert seit: 27. Nov 2017
2.431 Beiträge
 
Delphi 7 Professional
 
#2

AW: Delphi XE6 ComboBox im Frame wirft Exception bei Items

  Alt 12. Feb 2021, 15:35
Delphi-Quellcode:
ProtokollFrame.Parent := Panel1; // Das, worauf ProtokollFrame erscheinen soll.
// oder
ProtokollFrame.Parent := Form1;
// oder
ProtokollFrame.Parent := Self; // Janachdem, was hier Self ist und ob man ein Frame darauf platzieren kann / darf.
// eventuell noch:
ProtokollFrame.Align := alClient; // alTop ...
// oder
ProtokollFrame.Top := 0; // Oder welche Koordinaten, Höhe, Breite ... sonst gewünscht sind.
ProtokollFrame.Left := 8;
ProtokollFrame.Height := 15;
ProtokollFrame.Width := 42;
  Mit Zitat antworten Zitat