这个窗体左过是一个combobox控件,右边是一个文本框控件用来输入关键值,
我要实现当我触发 combobox的 dropdown事件时,把 table2的所有字段都
添加进去,问题是: table2的字段都是英文的,我现在想加对应的中文字段
请问该怎样搞 呀?
procedure Tbookquery.ComboBox1DropDown(Sender: TObject);
var
  i:integer;
begin
  combobox1.Clear;
  for i:=0 to dm.table1.FieldCount-1 do
     combobox1.Items.Add(dm.table2.Fields[i].FieldName);end;