以文本方式查看主题 - Foxtable(狐表) (http://foxtable.net/bbs/index.asp) -- 专家坐堂 (http://foxtable.net/bbs/list.asp?boardid=2) ---- 发布后的程序 多个运行 (http://foxtable.net/bbs/dispbbs.asp?boardid=2&id=75697) |
-- 作者:ljh29206 -- 发布时间:2015/10/13 10:21:00 -- 发布后的程序 多个运行 发布的程序 可以多个运行,
如何设定条件 只能运行1个? |
-- 作者:大红袍 -- 发布时间:2015/10/13 10:33:00 -- 全局代码:
Public mu As System.Threading.Mutex
BeforeOpenProject事件:
Dim sucess As Boolean = False
mu = new System.Threading.Mutex(True, "名称", sucess)
If not sucess Then
MessageBox.Show("只能打开一次!")
e.Cancel = True
End If
|
-- 作者:ljh29206 -- 发布时间:2015/10/13 11:00:00 -- .NET Framework 版本:2.0.50727.5485 提示错误!
|
-- 作者:大红袍 -- 发布时间:2015/10/13 11:02:00 -- 1、把bin文件夹删除;
2、不要改成foxtable啊,改成任意一个名字啊 |
-- 作者:ljh29206 -- 发布时间:2015/10/13 11:06:00 -- 哦哦! 好了 谢谢老师 |