设为首页收藏本站Access中国

Office中国论坛/Access中国论坛

 找回密码
 注册

QQ登录

只需一步,快速开始

1234下一页
返回列表 发新帖
查看: 12654|回复: 31
打印 上一主题 下一主题

禁止程序多开

[复制链接]
跳转到指定楼层
1#
发表于 2008-9-8 15:05:43 | 只看该作者 回帖奖励 |正序浏览 |阅读模式
ACCESS本身也不允许程序打开多次,  但如果把程序复制到其他目录,  就可以程序多开了
有什么方法禁止上述的行为呢  ,  方法有好几种,  这里介绍CreateMutex 建立互斥体

模块代码

Private Declare Function CreateMutex Lib "kernel32" Alias "CreateMutexA" (ByVal lpMutexAttributes As Long, ByVal bInitialOwner As Long, ByVal lpName As String) As Long
Private Declare Function CloseHandle Lib "kernel32" (ByVal hObject As Long) As Long
  
'variable constant to match if the mutex exists
Private Const ERROR_ALREADY_EXISTS = 183&
  
'Application Variable Declarations
Public Const AppVer = "MyApp v1.1"
Public Function Test()

Dim Mutexvalue As Long
  
'*the following code would go in the starting function of your application
'either the main() or form_load() depending on how your application works
  
'Create an individual mutex value for the application
Mutexvalue = CreateMutex(ByVal 0&, 1, AppVer)
  Debug.Print Mutexvalue
'If an error occured creating the mutex, that means it
'must have already existed, therefore your application
'is already running
If (Err.LastDllError = ERROR_ALREADY_EXISTS) Then
  
'Inform the user of running the same app twice
MsgBox "The application is already running."
  
'Terminate the application via the reference to it, its hObject value
CloseHandle Mutexvalue
Application.Quit acQuitSaveNone
End If
End Function


测试例子

游客,如果您要查看本帖隐藏内容请回复

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有帐号?注册

x
分享到:  QQ好友和群QQ好友和群 QQ空间QQ空间 腾讯微博腾讯微博 腾讯朋友腾讯朋友
收藏收藏1 分享分享 分享淘帖 订阅订阅
31#
发表于 2016-6-28 09:20:10 | 只看该作者
本帖最后由 wu8313 于 2016-6-29 14:58 编辑

运行 楼主的附件,确实有 禁止多开的效果。
但是,把该附件的模块 ,导入到我自己的mdb文件中,就没有 禁止多开的效果了。

==============================
搜索网络,找到一个 使用互斥 方法,禁止多开的实例。
把模块导入你自己的mdb文件,同样可以 禁止多开。







本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有帐号?注册

x
30#
发表于 2016-3-5 19:03:27 | 只看该作者
11111111111111111
29#
发表于 2013-3-27 10:12:16 | 只看该作者
學習
28#
发表于 2011-12-16 20:29:06 | 只看该作者
谢谢分享,学习学习
27#
发表于 2011-9-5 19:40:09 | 只看该作者
谢谢分享
26#
发表于 2011-7-25 18:26:24 | 只看该作者
学习
25#
发表于 2011-4-30 14:03:43 | 只看该作者
要学习一下

点击这里给我发消息

24#
发表于 2011-5-21 12:05:34 | 只看该作者
谢了
23#
发表于 2011-5-22 23:06:10 | 只看该作者
受教了
您需要登录后才可以回帖 登录 | 注册

本版积分规则

QQ|站长邮箱|小黑屋|手机版|Office中国/Access中国 ( 粤ICP备10043721号-1 )  

GMT+8, 2025-1-7 20:50 , Processed in 0.088631 second(s), 36 queries .

Powered by Discuz! X3.3

© 2001-2017 Comsenz Inc.

快速回复 返回顶部 返回列表