我的dbcombox中加入若干项,但发现点下拉后选中一项并不能出现在编辑框中,为何?以下是frmcreate中的代码
 adoquery1.close;
//adoquery1.connection:=你的数据连接;
adoquery1.sql.add('select name from pjzl');
adoquery1.open;adoquery1.first;
while not adoquery1.EOF do
begin
 // dbcomboBox2.AddItem(adoquery1.fieldByName('name').asstring);
  dbcomboBox2.Items.add(adoquery1.fieldByName('name').asstring);
  adoquery1.next;
end;
 adoquery1.Close ;
执行后发现已从表中取数据到列表中了,但就是不能选择,怪事?