PB中怎样限制程序只能打开一个

 我来答
hy1397471
2017-01-07 · 知道合伙人软件行家
hy1397471
知道合伙人软件行家
采纳数:4714 获赞数:17154
15年数据库维护及数据库应用系统开发经验,从事零售业、服务业及财务管理类系统开发与维护。

向TA提问 私信TA
展开全部

使用windows自带的库函数'kernel32.dll' ,来判断程序是否已经运行,示例如下:

//外部函数声明
Function ulong   GetLastError () library 'kernel32.dll' 
Function ulong   CreateMutexA (ulong lpMutexAttributes, int bInitialOwner, ref string lpName) library 'kernel32.dll' 

//app 的open事件代码
string  ls_mutex_name
ulong  ll_mutex
ulong   ll_err 
if handle (GetApplication(),false) <> 0 then 
ls_mutex_name = AppName
ll_mutex      = CreateMutexA (0,0,ls_mutex_name) 
ll_err        = GetLastError() 
if ll_err = 183 then 
messagebox("","该程序正在运行")
Halt close
end if
end if
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式