2021年9月12日 星期日

Try..Except..End 例外狀況處理

Try
  ...
  ...
Except
  ...
End;


Exception

Try
  ...
  ...
Except
   on E:Exception do
  begin
    MessageBox(Handle, PWideChar(E.Message), PWideChar(E.Class), MB_ICONError);
  end
End;

沒有留言:

張貼留言