Einzelnen Beitrag anzeigen

Benutzerbild von Neutral General
Neutral General

Registriert seit: 16. Jan 2004
Ort: Bendorf
5.219 Beiträge
 
Delphi 10.2 Tokyo Professional
 
#1

TComboBoxEx will keine Items

  Alt 12. Jun 2008, 17:13
Hi,

Also so langsam versteh ichs nicht. Habe auch hier in der DP gesucht. Ich erzeuge eine ComboBoxEx zur Laufzeit so:

Delphi-Quellcode:
cbChooseElement := TComboBoxEx.Create(Self);
with cbChooseElement do
begin
  Parent := ValueListEditor1;
  Left := ValueListEditor1.CellRect(1,3).Left;
  Top := ValueListEditor1.CellRect(1,4).Top;
  Width := ValueListEditor1.CellRect(1,4).Right - ValueListEditor1.CellRect(1,4).Left;
  Anchors := [akLeft,akRight,akTop];
  Font.Name := 'SimSun';
  Style := csExDropDownList;
end;
Jetzt habe ich versucht Items hinzuzufügen. Probierte Varianten:

Delphi-Quellcode:
// Methode 1
var ExItem: TComboExItem;
ExItem := cbChooseElement.ItemsEx.Add;
Exitem.Caption := 'Test';
// Methode 2 (bzw 1b)
with cbChooseElement.ItemsEx.Add do
  Caption := 'Test';
// Methode 3
cbChooseElement.Items.Add('Test');
// Methode 4
cbChooseElement.ItemsEx.AddItem('Test',-1,-1,-1,0,nil);
Es funktioniert alles nichts. Zur Laufzeit passiert nichts wenn ich auf den "Aufklapppfeil" klicke...

Gruß
Neutral General
Michael
"Programmers talk about software development on weekends, vacations, and over meals not because they lack imagination,
but because their imagination reveals worlds that others cannot see."
  Mit Zitat antworten Zitat