主题:如何用ComboBox1来提取数据库中的一组数据
liya
[专家分:0] 发布于 2007-05-13 15:01:00
如何用ComboBox1来提取数据库中的一组数据 谢谢拉 新手求救
回复列表 (共3个回复)
沙发
冰封星云 [专家分:2260] 发布于 2007-05-13 15:16:00
self.ADOQuery1.Open;
while not self.ADOQuery1.Eof do
begin
self.ComboBox1.Items.Add(self.ADOQuery1.FieldValues['username']);
self.ADOQuery1.Next;
end;
板凳
风之海洋 [专家分:0] 发布于 2007-06-01 16:25:00
var i:integer;
begin
with adoquery1 do
begin
close;
sql.add('select 字段名 from 表名');
open;
for i:=1 to recordcount do
begin
combobox1.Items.add(fieldbyname(字段名).AsString);
next;
end;
end;
end;
3 楼
zaliang [专家分:1010] 发布于 2007-06-04 13:43:00
query.open;
with query do
begin
if RecordCount<=0 then Exit;
Combobox1.clear;
while not eof do
begin
combobox1.items.add(fieldvalues['fieldname']);
Next;
end;
end;
我来回复