Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
Dim teststr As String = ""
For Each p As Process In Process.GetProcesses
teststr = teststr & (p.ProcessName.ToLower)
Next
If teststr.Contains("techlaunch") Then
MsgBox("")
End If
End Sub