⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 spclient.dpr

📁 1、 spClient.exe 客户端服务程序
💻 DPR
字号:
program spClient;

uses
  Forms,
  sysutils,
  windows,
  main in 'main.pas' {Form1},
  regForm in 'regForm.pas' {Form2};

{$R *.res}

var
    mutex     : THandle;
    mutexName : array [0..7] of char;
begin
  Application.Initialize;
  try
    strpcopy(mutexname,'SMSEXPRESS');
    mutex:=openmutex(MUTEX_ALL_ACCESS, False, mutexName );
    if mutex=0 then    //程序未启动,继续运行
    begin
        mutex :=createmutex(nil ,true, mutexName);
        Application.CreateForm(TForm1, Form1);
  Application.Run;
        releasemutex(mutex);
    end;
  finally
  end;
end.


⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -