Pages

Sunday, January 30, 2011

Check for Existing Process Name

 While (True)

 localByName = Process.GetProcessesByName("notepad")

    If localByName.Length = 0 Then
     Exit While
    End If

End While

No comments:

Post a Comment