有关I/OERROR53(50分)

  • 主题发起人 主题发起人 zzd
  • 开始时间 开始时间
Z

zzd

Unregistered / Unconfirmed
GUEST, unregistred user!
请问如何在DELPHI中的异常响应时,当出现I/O ERROR53错误时,使系统不
出现错误提示,而由程序员自行控制.
 
用try来自己捕获异常就可以了.
 
try
maybe raise exception programs;
except
raise Exception.Create('I/OError 5');
end;
 
try
something
except
//you could do nothing
end;

or u could use such code:
procedure myexception(sender:tobject);

form1.oncreate
begin
application.onexception := myexception;
end;

procedure myexception(sender:tobject);
begin
//do nothing
end;
 
多人接受答案了。
 
后退
顶部