N
newhorse
Unregistered / Unconfirmed
GUEST, unregistred user!
我用的是数据库录入,每次录入都有可能是以前已经输入的。所以使用dbcombobox方便些
所以在ITEMS加入某字段内容: 怎样使它能把所得的内容不重复呢?
table1.first;
dbcombobox1.items.clear;
while not table1.eof do
begin
combobox1.items.add(table1.fieldbyname('field1').asstring);
table1.next;
end;
所以在ITEMS加入某字段内容: 怎样使它能把所得的内容不重复呢?
table1.first;
dbcombobox1.items.clear;
while not table1.eof do
begin
combobox1.items.add(table1.fieldbyname('field1').asstring);
table1.next;
end;