Dann müste ich also statt
ComboBox2.Items:=ComboBox1.Items;
den Code
ComboBox2.Items[i]:=ComboBox1.Items[i];
in einen Schleife ausführen und für jeden String einzeln zuweisen und vorher ItemCount entsprechend setzen?
Geht dann nicht aber auch dieses:
ComboBox2.Items.Text:=ComboBox1.Items.Text;