컴퓨터 예약종료
VB.NET으로만든 컴퓨터 예약종료 프로그레스바를 추가하고 시간제한은 한시간 이내로 해두었다. Public Class Form1 Dim SecP As Integer Dim Sec As Integer Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick Label1.Text = Format(TimeSerial(0, 0, Sec - SecP), "mm:ss") If SecP >= Sec Then Shell("shutdown -s -t 0") Else SecP = SecP + 1 ProgressBar1.Value = ProgressBar1.Value + 1 End If End S..
2010.11.25