Hi!
So überträgst du die Daten in eine DBComboBox:
(Hat auch die Eigenschaft "Items" etc.)
Delphi-Quellcode:
with Table1 do
begin
first;
DBComboBox1.Items.clear;
while not eof do
begin
DBComboBox1.Items.add(fieldbyname('Vorname').asstring);
next;
end;
end;
Ich hoffe, ich konnte dir helfen.