Easiest way to find previous instance of an application
- by Yogi Yang 007
I have rewritten a VB6 based application developed in Delphi, which should have only one instance running. How can I do this with minimum of code?
In VB6 we just have to use one single line of code
If App.PrevInstance Then
'Take some action
End If
On goggling I did find a solution but it is very length and we have to mess with .drp file.
I do not want to do that.
I want something simpler.