本文整理自网络,侵删。
让程序只运行1次
procedure TForm1.FormCreate(Sender: TObject);
begin
CreateMutex(nil,False,'NetSend');
if GetLastError=ERROR_ALREADY_EXISTS then
begin
Halt(0);
end;
end;
end.
相关阅读 >>
Delphi xe5 android 使用system.zip单元释放资源文件
Delphi xe 获取 android application version 版本
更多相关阅读请进入《Delphi》频道 >>