procedure TF_yjxx.DBLookupComboBox2Click(Sender: TObject);
begin
    with U_DM.ADOQuery_jlj do
      begin
          close;
          sql.Clear;
          sql.Add('select F_JLJBM from T_JLJ where F_DWBM='''+ DBLookupComboBox1.text +'''');
          open;
          DBLookupComboBox2.Filter:='F_DWBM'+'='+quotedstr(DBLookupComboBox1.text);
      end;
end;end.报错信息:
Build
  [Error] U_yjxx.pas(265): Undeclared identifier: 'Filter'
  [Fatal Error] Project.dpr(10): Could not compile used unit 'U_yjxx.pas'产生错误的原因,如何解决?