×
日本語のページを検索
  • すべての言語
  • 日本語のページを検索
すべての結果
ここでのソースはプロジェクトソースです。 □使用するAPI関数. OpenMutex(既存の名前付きミューテックスオブジェクトのハンドルを取得する); CloseHandle(オブジェクト ...
hMutex := OpenMutex(MUTEX_ALL_ACCESS, False, MutexName); if (hMutex <> 0) then begin CloseHandle(hMutex); Exit; end; hMutex := CreateMutex(nil, False, MutexName);.
2015/12/15 · Quest ... いつもお世話になっています。 非常に不可解な現象に出くわしたので、皆さんのお知恵を借りたいと思います。 ... それを仕込んだのに二重起動して ...
2023/12/23 · var hMutex: THandle; // Mutex用ハンドルconst Mutexname = '____MainMenu'; begin hMutex := OpenMutex(MUTEX_ALL_ACCESS ...
... OpenMutex(MUTEX_ALL_ACCESS, False, 'hPrevInst'); { CreateMutexの所と同じ名前にします } if hMutex <> 0 then begin { オープン出来るなら既に実行されている } ...
jp/solution/tech/delphi/#mutex. CreateMutex. http://msdn.microsoft.com/library/ja/jpdllpro/html/_win32_createmutex.asp?frame=true. 二重起動防止. program test ...
1999/09/19 · UniqueName : string; hMutex: THandle; initialization UniqueName := ExtractFileName(ParamStr(0)); hMutex := OpenMutex(MUTEX_ALL_ACCESS, false, ...
2003/10/02 · Handle := FindWindow(ClassName, WindowName); SetForegroundWindow(Handle); Exit; end; CreateMutex(nil, False, MutexName); Application.Initialize;
mrxray.on.coocan.jp からのDelphi OpenMutex
2020/07/18 · ... CreateMutex(nil, True, PChar(AName)); if ... Delphi 2007 以降では,MainFormOnTaskbar の値は True がデフォルトです. ... FormCreate(Sender: TObject); ...
hMutex := OpenMutex(MUTEX_ALL_ACCESS, False, PChar('MUTEX TEST')); MutexType := Format('Mutex Open(%d)', [hMutex]); if hMutex = 0 then begin hMutex ...