千
千中元
Unregistered / Unconfirmed
GUEST, unregistred user!
procedure TForm1.Edit2Change(Sender: TObject);
begin
try
DataModule2.ClientDataSet1.Locate('categroy',vararrayof([edit2.text]),[locaseinsensitive,lopartialkey]);
except
showmessage('hehe')
end;
这个代码的用途应该是定位于edit2中输入的部分键值
可在edit2框中改动任何东西都触发异常,根本没办法定位。
Oicq俱乐部的一个大侠说要“
你把except部份的showmessage改成
ShowException(ExceptObject,ExceptAddr)看出了什么问题。”
exceptObject,exceptaddr参数是什么意思?
有没有其他的解决办法?
begin
try
DataModule2.ClientDataSet1.Locate('categroy',vararrayof([edit2.text]),[locaseinsensitive,lopartialkey]);
except
showmessage('hehe')
end;
这个代码的用途应该是定位于edit2中输入的部分键值
可在edit2框中改动任何东西都触发异常,根本没办法定位。
Oicq俱乐部的一个大侠说要“
你把except部份的showmessage改成
ShowException(ExceptObject,ExceptAddr)看出了什么问题。”
exceptObject,exceptaddr参数是什么意思?
有没有其他的解决办法?