The Following is my code and i'm tryin to read the CPU usage. when i run this all i get is a bunch of zeros..

Dim MyCounter As New PerformanceCounter
MyCounter.CategoryName = "Processor"
MyCounter.CounterName = "% Processor Time"
MyCounter.InstanceName = "_Total"

Debug.WriteLine(MyCounter.NextValue)

I have tried everywhere...believe me...i tried to save the counter to a single data variable and then send it but still zeros...thanks in advance