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判断驱动器类型

Delphi tfile

Delphi 获取网站验证码的图片

Delphi 判断素数的简单例子

tstringlist 常用操作

Delphi combobox和listbox的文字可以右对齐显示

Delphi 修改ie首页代码

Delphi中编写无输出函数名的dll文件

Delphi 窗体只显示控件

Delphi windows 编程[21] - wm_menuselect 消息与 getmenustring 函数

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



打赏

取消

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

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

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

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

评论

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