delphi - System.RunError


本文整理自网络,侵删。

 学习官方示例 - 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 nativexml的中文支持

Delphi 判断字符串是否包含汉字,正则版和非正则版

idtcpclient和idtcpclient 主要属性和方法

Delphi中几种程序自我删除的方法

Delphi 判断字符串是否是单词

Delphi建立文件的快捷方式

Delphi 验证ip地址

Delphi复制粘贴操作

Delphi richedit memo1支持中文搜索、向上查找、区分大小写

Delphi form生成时的事件次序

更多相关阅读请进入《Delphi》频道 >>



打赏

取消

感谢您的支持,我会继续努力的!

扫码支持
扫码打赏,您说多少就多少

打开支付宝扫一扫,即可进行扫码打赏哦

分享从这里开始,精彩与您同在

评论

管理员已关闭评论功能...