Delphi 进程程序多开调用单元


本文整理自网络,侵删。

 
unit fun;

interface

uses
  Windows,Forms,SysUtils,TlHelp32,ActiveX,ComObj,ShlObj;

procedure  Mutex;//进程互斥
implementation
uses main;


procedure  Mutex;
var
 hMutex:HWND;
begin
///////////////////////////////创建互斥进程/////////////////////////////
  hMutex := CreateMutex(nil,True,'johntao');
  if hMutex <> 0 then
    if GetLastError = ERROR_ALREADY_EXISTS then
    begin
      Application.MessageBox('禁止多开登陆器!','提示信息',MB_OK);
      Application.Terminate;
    end;
///////////////////////////////end/////////////////////////////////////
end;
end.

用法:


begin
  Mutex;//进程互斥
  Application.Initialize;
  Application.CreateForm(Tfrm_main, frm_main);
  Application.Run;
end.

相关阅读 >>

Delphi closehandle的解释

Delphi controlcount和componentcount的区别

Delphi写文本文件

Delphi getprocessmemoryinfo获取进程占用内存大小

Delphi richedit 的scrollbar自动向下滚动

Delphi android.os获取sn号

Delphi 下保存真彩彩图标的方法实例

Delphi xe5复制粘贴操作

Delphi 工程判断内存溢出reportmemoryleaksonshutdown := true;

Delphi tms web core twebhttprequest使用

更多相关阅读请进入《Delphi》频道 >>



打赏

取消

感谢您的支持,我会继续努力的!

扫码支持
扫码打赏,您说多少就多少

打开支付宝扫一扫,即可进行扫码打赏哦

分享从这里开始,精彩与您同在

评论

管理员已关闭评论功能...