반응형
*C# PC 사용 시간 얻어 오기 예제...
- 사용한 컨트롤 : Button 1개, Label 1개
전체 소스 코드
From1.cs
Public Class Form1
Private Sub button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles button1.Click
Try
Using pc As PerformanceCounter = New PerformanceCounter("System", "System Up Time")
pc.NextValue()
label1.Text = TimeSpan.FromSeconds(pc.NextValue()).ToString()
End Using
Catch ex As Exception
label1.Text = "00:00:00"
End Try
End Sub
End Class
*예제 결과
https://kdsoft-zeros.tistory.com/194
반응형
'VB.NET Programming' 카테고리의 다른 글
[VBNET] Encoding Class - 유니코드 문자열 존재 여부 (0) | 2020.04.29 |
---|---|
[VBNET] [API] Form - Animate (0) | 2020.04.24 |
[VBNET] [API] mciSendString - WAV 파일 재생 (0) | 2020.04.21 |
[VBNET] SendKeys - 화면 캡쳐 (Screen Capture) (0) | 2020.04.16 |
[VBNET] 선택된 프로세스 죽이기 (Kill Process) (0) | 2020.04.14 |