Does any one know the code to retreve process info and put it in a box like task manager?
scrypt3r -4 Junior Poster
Recommended Answers
Jump to PostTry this :
Private Sub ProcessView() Dim Prc As Process() Dim x As Integer Prc = Process.GetProcesses For x = 0 To UBound(Prc) ListBox1.Items.Add(Prc.GetValue(x)) Next End Sub
Jump to Post>> ListBox1.Items.Add(Prc(x).ProcessName)
thanks iamthwee for the correction.
All 8 Replies
Jx_Man 987 Nearly a Senior Poster Featured Poster
Sawamura commented: Great code +1
Jade_me commented: Good :P +1
scrypt3r -4 Junior Poster
Jx_Man 987 Nearly a Senior Poster Featured Poster
Estella 23 Junior Poster in Training
scrypt3r -4 Junior Poster

iamthwee
Jx_Man 987 Nearly a Senior Poster Featured Poster
Sawamura commented: Great code :) +1
scrypt3r -4 Junior Poster
Be a part of the DaniWeb community
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.