vote up 0 vote down star

How do I get the cpu usage percentage to display in the label on a form?

flag

0% accept rate
2  
VB.NET or Visual Basic 6.0? – Mitch Wheat Apr 28 at 6:15

4 Answers

vote up 1 vote down
Import Namespace System.Diagnostics

' ...
Dim cpu as New PerformanceCounter()
With cpu
    .CategoryName = "Processor"
    .CounterName = "% Processor Time"
    .InstanceName = "_Total"
End With

' ...
myLabel.Text = cpu.NextValue()
link|flag
vote up 0 vote down

Look here: How to get the CPU Usage C#

Should be easy to translate to VB.Net

link|flag
vote up 0 vote down

You can do it in .NET at least using the WMI API. WMI allows you to get a bunch of Windows Management type data such as CPU usage, hardare specs, etc.

http://www.aspfree.com/c/a/VB.NET/WMI-Programming-with-Visual-BasicNET-What-is-the-WQL/

link|flag
vote up 0 vote down

Check this http://www.codeproject.com/KB/system/processescpuusage.aspx is in c# but can't be converted easy for vb.net manualy or using this tool http://www.developerfusion.com/tools/convert/csharp-to-vb/

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.