Reply to thread

[code=vb]Dim m As Mutex = New Mutex(False, "ApplicationName")


If Not m.WaitOne(0, False) Then

    Application is already running

End If[/code]


Back
Top