With App.PrevInstance = True, I can check if my previous instance is renning or not. If its running, I want to terminate it. How do we do that.
Thanks
Printable View
With App.PrevInstance = True, I can check if my previous instance is renning or not. If its running, I want to terminate it. How do we do that.
Thanks
VB Code:
If App.PrevInstance = True Then Unload Me End If
May be I was not clear. I want to Kill the previous instance. Not the current one.