T
txyx
Unregistered / Unconfirmed
GUEST, unregistred user!
var s:string;
begin
s:=combobox2.Items.Strings[combobox2.itemindex]
+combobox3.Items.Strings[combobox3.itemindex]
+edit5.Text;
try
Adotable1.Filtered:=false;
Adotable1.Filter:=s;
Adotable1.Filtered:=true;
except
showmessage('条件错误!');
Adotable1.Filtered:=false;
end;
end;
其中,combobox2是字段选择,combobox3是条件选择(>=<)
有一个表:Adotable1, 字段:姓名(文本类型),日期(短日期),
金额(货币).大家都知道上面这段简单程序是干什么的了吧!!
怪事来了,字段选择如果是“日期","金额",程序显示没有问题;
但是是"姓名"的话,就总是一句'条件错误!'
我的程序编译时有一句:Invalid variant type conversion
是不是和它有关??
begin
s:=combobox2.Items.Strings[combobox2.itemindex]
+combobox3.Items.Strings[combobox3.itemindex]
+edit5.Text;
try
Adotable1.Filtered:=false;
Adotable1.Filter:=s;
Adotable1.Filtered:=true;
except
showmessage('条件错误!');
Adotable1.Filtered:=false;
end;
end;
其中,combobox2是字段选择,combobox3是条件选择(>=<)
有一个表:Adotable1, 字段:姓名(文本类型),日期(短日期),
金额(货币).大家都知道上面这段简单程序是干什么的了吧!!
怪事来了,字段选择如果是“日期","金额",程序显示没有问题;
但是是"姓名"的话,就总是一句'条件错误!'
我的程序编译时有一句:Invalid variant type conversion
是不是和它有关??