本文整理自网络,侵删。
学习官方示例 - 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 xe firemonkey的stylebook皮肤控件的使用
Delphi 从给定字符串中截取n个字节的字符(解决汉字截取乱码问题)
Delphi 在 api 函数中使用 pchar 参数的几种方法
Delphi 获取指定年月的周、日数 -weeksinayear、weeksinyear、daysinayear、daysinamonth、daysinyear、daysinmonth
更多相关阅读请进入《Delphi》频道 >>