Office中国论坛/Access中国论坛

标题: 禁止程序多开 [打印本页]

作者: andymark    时间: 2008-9-8 15:05
标题: 禁止程序多开
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


测试例子



作者: huangqinyong    时间: 2008-9-8 22:25
难得坐个沙发[:13]
作者: changweiren    时间: 2008-12-7 21:24
一定有用,谢谢楼主!
作者: yori2007    时间: 2008-12-15 11:42
[:50]
作者: YCLOVE    时间: 2008-12-25 22:18
一定有用
作者: koutx    时间: 2009-1-22 20:16
收藏备用
作者: luhao    时间: 2009-3-9 19:01
学习了
作者: pcmanliu    时间: 2009-4-6 23:47
下載來研究一下..
作者: shiningdays    时间: 2009-5-22 16:03
收藏了先!
作者: W886655    时间: 2009-5-22 23:18
总之,运算式在ACCESS中的应用是很广泛,包括:3 M% z6 u" n7 N0 _

* l4 k7 `" H! T5 |' W8 G% `0 @* VBA 模块控制流程与循环的条件判断
. O! \: M6 l; M  l
- p7 ^& L: [" i( b* e* SQL 指令的条件判断
& t6 T  ~4 r% J$ B4 z* c2 m
7 q- K/ M. ^& ~7 v+ D
* 宏中的条件判断3 h* }+ X. E$ J' q( X) N
1 w0 d6 w# {. r
* 数据表字段中的默认值属性3 \& Q# U9 E( |! ]7 v9 `! j( [: O
$ P3 o& z1 \& X; O+ Y
* 数据表的验证规则属性
' e/ V5 i" z6 ?
# \+ l! j5 y0 k# o2 j4 U* 查询中建立的计算字段
- y) J  p6 h. Z, j* _
) z# i8 b. w9 Q" k2 c( [/ G
* 输入字段中准则属性1 O4 x) e7 D- S8 [
' L$ p9 t1 M4 H" n
    运算式虽然很重要,但是它的结构很简单,依照运算符所需要的运算元数量来分共有两类:
" M4 Q0 y$ ]& Z  C3 h5 X( q
  H' |4 H# d2 k& Z( l* 单运算元:每个运算符只需要一个运算元。其格式:

作者: changjhjn666    时间: 2009-6-3 13:33
太好了,就是怎样测试呢?能详细说明就好了。
作者: fytxcf    时间: 2009-6-29 20:17
aaaaaaaaaaa
作者: cjy8    时间: 2009-8-4 11:33
正在找此功能,学习学习
作者: c101    时间: 2009-8-25 22:06
谢谢楼主
作者: chaojianan    时间: 2009-9-27 08:58
有用,谢谢分享。
作者: 唐玉娥    时间: 2009-11-5 22:39
很有用的东西,谢谢哦
作者: fengtao666    时间: 2010-7-25 14:12
看看这个例子
作者: xuwenning    时间: 2010-7-27 09:46
学习学习
经典
作者: yodong    时间: 2011-4-30 14:03
要学习一下
作者: 真主    时间: 2011-5-21 12:05
谢了
作者: rgbso    时间: 2011-5-22 23:06
受教了
作者: martinko    时间: 2011-6-9 21:28

作者: 崔延东    时间: 2011-7-25 18:26
学习
作者: kdjifir34562    时间: 2011-8-11 09:07
THANK YOU
作者: kdjifir34562    时间: 2011-8-11 09:16
解压密码是多少啊?
作者: kdjifir34562    时间: 2011-8-11 09:17
www.office-cn.net
作者: yanwei82123300    时间: 2011-9-5 19:40
谢谢分享
作者: bigyoung    时间: 2011-12-16 20:29
谢谢分享,学习学习
作者: ANDY8    时间: 2013-3-27 10:12
學習
作者: xlb004    时间: 2016-3-5 19:03
11111111111111111
作者: wu8313    时间: 2016-6-28 09:20
本帖最后由 wu8313 于 2016-6-29 14:58 编辑

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

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












欢迎光临 Office中国论坛/Access中国论坛 (http://www.office-cn.net/) Powered by Discuz! X3.3