阿 阿朱 Unregistered / Unconfirmed GUEST, unregistred user! 2001-01-19 #1 我想只要DELPHI一报错,比如地址错,类型转换错误,数据集未打开等,我就截获住, 把错误提示写到我的文本文件中,错不报出来
D dq Unregistered / Unconfirmed GUEST, unregistred user! 2001-01-19 #2 用一个TApplicationEvents响应OnException消息—— procedure TForm1.ApplicationEvents1Exception(Sender: TObject; E: Exception); begin //——把E.Message记下来。 end;
用一个TApplicationEvents响应OnException消息—— procedure TForm1.ApplicationEvents1Exception(Sender: TObject; E: Exception); begin //——把E.Message记下来。 end;