S
stonehuang
Unregistered / Unconfirmed
GUEST, unregistred user!
我用如下方法将table1的某列数据添加到dbcombobox1中:
DBComboBox1.Items.Clear;
Table1.Active := True;
Table1.disablecontrols;//new
Table1.First;
while not Table1.Eof do begin
DBComboBox1.Items.Add(Table1.FieldByName('F1').AsString);
Table1.Next;
end
Table1.enablecontrols;//new
但为什么我添加之后在dbcombobox1中看不见,必须重新启动程序才能看见,有什么办法不
重新启动程序立即就可以看见呢???
谢谢!!!
DBComboBox1.Items.Clear;
Table1.Active := True;
Table1.disablecontrols;//new
Table1.First;
while not Table1.Eof do begin
DBComboBox1.Items.Add(Table1.FieldByName('F1').AsString);
Table1.Next;
end
Table1.enablecontrols;//new
但为什么我添加之后在dbcombobox1中看不见,必须重新启动程序才能看见,有什么办法不
重新启动程序立即就可以看见呢???
谢谢!!!