LogON LogOFF werden protokoliert

This commit is contained in:
ms
2022-12-28 09:58:58 +01:00
parent 18e00e475d
commit d694d26d19
18 changed files with 955 additions and 79 deletions

28
frmLogOff.vb Normal file
View File

@@ -0,0 +1,28 @@
Public Class frmLogOff
Dim FinalCountdown As Integer = 30
Private Sub frmLogOff_Load(sender As Object, e As EventArgs) Handles Me.Load
Label2.Text = FinalCountdown.ToString
Timer1.Start()
End Sub
Private Sub Timer1_Tick(sender As Object, e As EventArgs) Handles Timer1.Tick
If FinalCountdown > 0 Then
FinalCountdown = FinalCountdown - 1
Label2.Text = FinalCountdown.ToString
Else
Timer1.Stop()
Process.Start("shutdown", "-l")
Me.Close()
End If
End Sub
Private Sub BtnAbbrechen_Click(sender As Object, e As EventArgs) Handles BtnAbbrechen.Click
Timer1.Stop()
cRes.DisableAutoLogoff = True
Me.Close()
End Sub
End Class