天天看點

Delphi通過MessageBox顯示Exception錯誤資訊(類似C#)

C#顯示錯誤消息

try
            {

            }
            catch (Exception ex)
            {
                MessageBox.Show(ex.Message);
            }
           

Delphi顯示錯誤消息

unit Unit1;

interface

uses
  Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
  Dialogs, StdCtrls;

type
  TForm1 = class(TForm)
    Button1: TButton;
    procedure Button1Click(Sender: TObject);
  private
    { Private declarations }
  public
    { Public declarations }
  end;

var
  Form1: TForm1;

implementation

{$R *.dfm}

procedure TForm1.Button1Click(Sender: TObject);
var
  int1: Integer;
begin
  try
    int1 := StrToInt('A');
  except
     MessageBox(0,PWideChar(Exception(ExceptObject).Message), '小志智能家居系統', MB_OK);
  end;
end;

end.