设置最多可以打开的窗体数(exe文件最多只能打开4次)
Set maximum forms can be opened (the exe file can be opened 4 times only)
如何设置最多可以打开的表单(exe文件)
(我要设置exe文件只能打开4次!)
MessageBox("You have already opened This exe file 4 times";
您可以通过调用 Process.GetProcessesByName("YourApplicationName")
来检查 C# 中的 运行 个进程,并检查是否有超过 4 个进程 运行。如果有,请显示您的 MessageBox,然后退出应用程序的当前实例。
你可以使用这个:
Dim instanceCount As Integer = Process.GetProcessesByName("yourexename").Count()
If instanceCount > 4 then
MessageBox("You have already opened This exe file 4 times")
Environment.Exit(0)
End If
如何设置最多可以打开的表单(exe文件)
(我要设置exe文件只能打开4次!)
MessageBox("You have already opened This exe file 4 times";
您可以通过调用 Process.GetProcessesByName("YourApplicationName")
来检查 C# 中的 运行 个进程,并检查是否有超过 4 个进程 运行。如果有,请显示您的 MessageBox,然后退出应用程序的当前实例。
你可以使用这个:
Dim instanceCount As Integer = Process.GetProcessesByName("yourexename").Count()
If instanceCount > 4 then
MessageBox("You have already opened This exe file 4 times")
Environment.Exit(0)
End If