在 Form Create 事件中加入
procedure TForm1.FormCreate(Sender: TObject);
begin
raise Exception.Create('Test Exception'); // 丟出例外
end;
在 ApplicationEvents Exception 事件中加入
procedure TForm1.ApplicationEvents1Exception(Sender: TObject; E: Exception);
begin
Memo1.Lines.Add(E.Message); // 將例外印在 Memo1 上
end;
沒有留言:
張貼留言