cxGrid的两个列分别为 公司 和 部门 在窗体创建的时候已经添加了公司名称
with DataModule1 do
begin
Qselect.Close;
Qselect.SQL.Clear;
Qselect.SQL.Text := 'select distinct Area_Name from TCompany';
Qselect.Open;
Qselect.First;
(DBGrid1DBTableView1Area_Name.Properties as TcxComboBoxProperties).Items.Clear;
while not Qselect.Eof do
begin
(DBGrid1DBTableView1Area_Name.Properties as TcxComboBoxProperties).Items.Add(Qselect.FieldByName('Area_Name').AsString);
Qselect.Next;
end;
end;
现在的问题是如何根据选择的公司名称来添加对应的部门呢?
(DBGrid1DBTableView1Area_Name.Properties as TcxComboBoxProperties).Items.Text
获取到的是所有公司的名称,有什么办法能获取到当前选择的公司名称?
在Combobox中的Combobox1.Text在cxGrid中却不知道如何表达