Can the combobox drop-down box in Delphi read the information of a column in the database and display it for selection ~~ Or are there other controls that can be implemented ~~~
Haha ~~~~ I have a way!
procedure TForm1.FormCreate (Sender: TObject);
begin
while Not (adoquery1.Eof) do
begin
ComboBox1.Items.Add (adoquery1.FieldByName ('field name'). AsString);
adoquery1.Next;
end;