program mutex;
uses
Windows,
Forms,
Unit1 in ‘Unit1.pas‘ {Form1};
{$R *.res}
const
MutexStr = ‘4C3201D5-6A5A-4B8B-A2F0-B103985705F4‘; // GUID
var
hAppMutex: THandle;
begin
ReportMemoryLeaksOnShutdown := DebugHook = 1;
Application.Initialize;
hAppMutex := CreateMutex(nil, False, PChar(MutexStr));
if (hAppMutex = 0) then begin
Application.MessageBox(‘创建互斥对象失败!‘, ‘错误提示‘, MB_ICONSTOP);
exit;
end;
if ((hAppMutex <> 0) and (GetLastError() = ERROR_ALREADY_EXISTS)) then begin
Application.MessageBox(‘本程序只能运行一个副本!‘, ‘错误提示‘, MB_ICONSTOP);
CloseHandle(hAppMutex);
exit;
end;
Application.CreateForm(TForm1, Form1);
Application.Run;
CloseHandle(hAppMutex);
end.
相关文章
- 12-29[转]Delphi中,让程序只运行一次的方法
- 12-29【转】delphi程序只允许运行一个实例的三种方法:
- 12-29让 Delphi 程序只运行一个副本
- 12-29[转]Delphi中,让程序只运行一次的方法
- 12-29让自己的C++程序(非服务程序)运行为一个windows service
- 12-29Qt 只运行一个程序实例 -QLockFile -QSystemSemaphore 和 QSharedMemory
- 12-29Delphi - 让Delphi10.2在Windows下开发的图形界面程序运行在64位Linux中!
- 12-29如何创建一个只运行一个程序的自定义Linux发行版而不是其他程序?
- 12-29C# 实现程序只启动一次(多次运行激活第一个实例,使其获得焦点,并在最前端显示)
- 12-29让C#程序只运行一个实例,显示已经运行的界面