ADOTable的FilterOptions问题
我想要过滤的时候忽略大小写,
with dm.adoTABLE1 do
begin
FilterOptions:=FilterOptions+[foCaseInsensitive];
end;
运行时这句总会错filteroptions are not supported,(foNoPartialCompare也一样,)
with dm.adoTABLE1 do
begin
FilterOptions:=FilterOptions-[foCaseInsensitive];
end;
这句又没事
如果换成Table控件,则也不会出错
我想问问大家这是怎么回事?