Hi,
I have a label on my form called label1.text, I was wondering if it would be possible to display a text if there are more than 1 process running? The process I would like to check is the current exe (the windows application I'm creating)
Printable View
Hi,
I have a label on my form called label1.text, I was wondering if it would be possible to display a text if there are more than 1 process running? The process I would like to check is the current exe (the windows application I'm creating)
System.Diagnostics.Process.GetProcessesByName(name As String)
Justin
Hi Monk
I was thinking the following
Code:If System.Diagnostics.Process.GetProcessesByName(name As String) > 1 then
Label1.Text("App is running")