delphi中combobox的连动问题(从数据表中读取字段)

我想实现以下功能:假设数据表格式如下项目名称项目属性0011002100320042combobox1中有两个选项1和2(项目属性),当选1时,combobox2从数据表... 我想实现以下功能:假设数据表格式如下
项目名称 项目属性
001 1
002 1
003 2
004 2
combobox1中有两个选项1和2(项目属性),当选1时,combobox2从数据表中读取项目属性为1的项目名称即显示001,002;当选2时,combobox2从数据表中读取项目属性为2的项目名称即显示003,004,这种功能应该怎么实现呢
数据表不是固定的,当数据表添加新的项目时combobox2也要相应变化,所以我希望是combobox2每次自动读取项目名称,而不是在程序中添加进去
展开
 我来答
闫干8P
2006-12-19 · 超过38用户采纳过TA的回答
知道小有建树答主
回答量:191
采纳率:0%
帮助的人:0
展开全部
procedure TForm1.ComboBox1Change(Sender: TObject);
begin
if self.ComboBox1.Text ='1'then
begin
self.ComboBox2.Items.Clear;
self.ComboBox2.Items.Add('001');
self.ComboBox2.Items.Add('002');
self.ComboBox2.ItemIndex:=0;
end;
if self.ComboBox1.Text='2'then
begin
self.ComboBox2.Items.Clear;
self.ComboBox2.Items.Add('003');
self.ComboBox2.Items.Add('004');
self.ComboBox2.ItemIndex:=0;
end;
end;

procedure TForm1.ComboBox1Change(Sender: TObject);
var
i:integer;
begin
self.ADOQuery1.Close;
self.ADOQuery1.SQL.Clear;
self.ADOQuery1.SQL.Add('SELECT * FROM table where 项目属性='+self.ComboBox1.Text);
self.ADOQuery1.Open;
if self.ADOQuery1.RecordCount>0 then
begin
self.ComboBox2.Items.Clear;
Self.ADOQuery1.First;
for i:=0 to self.ADOQuery1.RecordCount-1 do
begin
self.ComboBox2.Items.Add(self.ADOQuery1.fieldbyname('项目名称').AsString);
self.ADOQuery1.Next;
end;
self.ComboBox2.ItemIndex:=0;
end;
end;
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式