01-17-2011, 01:36 PM
(01-16-2011, 10:54 PM)thanasis2028 Wrote: Ok here is a way to do this:
Code:For Each Proc As Process In Process.GetProcessesByName(TextBox2.Text)
Try
TextBox1.AppendText(Proc.MainModule.FileName & vbCrLf)
Catch
End Try
Next
All I did was change GetProcesses to GetProcessesByName and added a textbox to input the name of the processs
hey thanks bro, I got the code already but really thanks for the effort and help.