本文整理自网络,侵删。
学习官方示例 - System.RunError
unit Unit1;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls;
type
TForm1 = class(TForm)
Button1: TButton;
procedure Button1Click(Sender: TObject);
end;
var
Form1: TForm1;
implementation
{$R *.dfm}
var P: Pointer;
procedure TForm1.Button1Click(Sender: TObject);
begin
if P = nil then
RunError(204);
end;
end.
相关阅读 >>
Delphi 用firedac获取 sql server错误文本信息
Delphi 分解时间 �cdecodedate、decodetime … decodedatetime …
Delphi f1026 file not found: ''quickrpt.dcu''解决方法
python4Delphi 示例应用程序在 Delphi 应用程序中运行简单的 python 脚本
更多相关阅读请进入《Delphi》频道 >>