Registriert seit: 3. Mär 2006
Ort: Waldbronn
4.303 Beiträge
Delphi 2009 Professional
|
Re: "Element '' hat kein übergeordnetes Fenster"
12. Feb 2007, 17:06
Die Create Methode:
Delphi-Quellcode:
constructor TCompletionMemo.Create(AOwner: TComponent);
begin
inherited;
completionBox := TListBox.Create(self);
completionBox.Parent := AOwner as TWinControl;
completionBox.Width := FCompletionSizeWidth;
completionBox.Height := FCompletionSizeHeight;
FCompletionList := TStringList.Create;
end;
Und ggf. wichtig:
Die Property der ListBox:
Delphi-Quellcode:
published
property CompletionList : TStringList read FCompletionList write FCompletionList;
Fabian Eigentlich hat MS Windows ab Vista den Hang zur Selbstzerstörung abgewöhnt – mkinzler
|