Couple of quickies
1: Attached threads
Rather then list all attached threads in a list view. I wanted total count.
This is my own little work around.
Code:Dim oThreads As ProcessThreadCollection = ProcessID.Threads Dim arryThreads As New List(Of Integer) For x As Integer = 0 To oThreads.Count - 1 arryThreads.AddRange(New Integer() {x}) NextThis there a direct call to get the total number? Adding to an array seems a tad silly.Code:lvi.SubItems.Add(arryThreads.Count.ToString)
2: Individual CPU
Can't find it on MSDN. Any links that will go into detail on Application CPU and maybe even more detail on features on what i could add.




Reply With Quote