728x90
반응형
프로그램 중복 실행 방지
program Project1;
uses
Forms,Windows,
Unit1 in 'Unit1.pas' {fmMain};
var
Mutex : Thandle;
{$R *.res}
begin
Mutex := CreateMutex(nil,True,'YourMutex');
if (Mutex <> 0 ) and (GetLastError = 0 ) then
begin
Application.Initialize;
Application.CreateForm(TfmMain, fmMain);
Application.Run;
if Mutex <> 0 then CloseHandle(Mutex);
end;
end.
728x90
반응형
'Delphi Tip > +Tip' 카테고리의 다른 글
스크롤박스의 스크롤 제어 방법 (0) | 2022.02.14 |
---|---|
윈도우 바탕화면 경로(주소) 값 알아내기 (0) | 2022.02.11 |
TStreamMemory (0) | 2022.02.09 |
델파이 후킹(hooking) (0) | 2022.02.08 |
해당 월의 처음과 끝 날짜 알아오기 (0) | 2022.02.04 |
댓글