Hello everybody
How can I check whether my application is already running?
thx, in advance
George Papadopoulos
Printable View
Hello everybody
How can I check whether my application is already running?
thx, in advance
George Papadopoulos
In the load event of the first form or in the sub main in your project put this....
VB Code:
If App.PrevInstance = True Then MsgBox "Application already running." End End If