비베로 CPU사용률 출력하기
Imports System.Diagnostics Public Class Form1 Private Sub Timer1_Tick(sender As Object, e As EventArgs) Handles Timer1.Tick Dim p As New PerformanceCounter p.CategoryName = "Processor" p.CounterName = "% Processor Time" p.InstanceName = "_Total" Label1.Text = p.NextValue() End Sub Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load Timer1.Enabled = Tru..