概述
Interface
Uses: Windows, Forms
//登录Form OnCreate事件
if AppRunning = True then
begin
Application.MessageBox('对不起,程序已运行!',
'提示', MB_OK +
MB_ICONINFORMATION);
Application.Terminate;
end;
function AppRunning: Boolean;
var
hMutex: HWND;
ret: Integer;
begin
hMutex := CreateMutex(nil, False, PChar(Application.Title));
ret := GetLastError;
Result := ret = ERROR_ALREADY_EXISTS;
ReleaseMutex(hMutex);
end;
最后
以上就是拉长仙人掌为你收集整理的delphi 设置程序不能同时打开多个的全部内容,希望文章能够帮你解决delphi 设置程序不能同时打开多个所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复