单个实例应用程序 判断第二次启动
新建了一个单个应用程序
怎么判断第二次启动这个应用程序(第二次双击启动应用程序)
该在那个事件里面写呢
[解决办法]
Function PrevInstance() As Boolean
If Ubound(Diagnostics.Process.GetProcessesByName(Diagnostics.Process.GetCurrentProcess.ProcessName)) > 0 Then
Return True
Else
Return False
End If
End Function