本文整理自网络,侵删。
unit Unit1;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs;
Private
type
TForm1 = class(TForm)
prvate declarations }
procedure QueryEndSession(var Msg:TMessage);Message WM_QueryEndSession;
public
{ Public declarations }
end;
{ www.delphitop.com}
var
Form1: TForm1;
implementation
{$R *.dfm}
procedure TForm1.QueryEndSession(var Msg:TMessage);
begin
Msg.Result:=0;
end;
end.
相关阅读 >>
Delphi unicode转汉字 ,支持自动过滤非 unicode编码
Delphi中url的编码与解码,即urlencode的使用
Delphi示例代码 android,ios,osx,windows,linux,html5
更多相关阅读请进入《Delphi》频道 >>