query1.open
combobox1.items.clear
while
not
query1.eof
do
begin
combobox1.items.add(query1.fieldbyname('字段1').asstring)
query1.next
end
估计是因为dbcombobox没有添items项目,比如数据库这个字段的值可能有“1”“2”“3”三种,那么dbcombobox的items应该包括所有这三项。不然的话,显示可能没问题,但是不能使用combobox对数据进行修改。
sql3="select * from jcfl where area_parent='" & combobox2.text & "' order by area_order"欢迎分享,转载请注明来源:内存溢出
评论列表(0条)