Geen omschrijving
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

系統登出.vb 792B

12345678910111213141516171819
  1. Option Strict Off
  2. Imports System.Data.SqlClient
  3. Public Class 系統登出
  4. Private Sub 系統登出_Load(sender As Object, e As EventArgs) Handles MyBase.Load
  5. FormBorderStyle = FormBorderStyle.SizableToolWindow : ControlBox = False
  6. ConnOpen()
  7. SQL1 = "SELECT timeExit2 FROM 系統閒置時間設定"
  8. CmdSet_For_dr()
  9. If dr.Read() Then
  10. Label1.Text = "系統閒置," & dr("timeExit2") & "秒後即將重登"
  11. End If : conn.Close()
  12. End Sub
  13. Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
  14. 重登確認 = True : Me.Close()
  15. End Sub
  16. Private Sub Button2_Click(sender As Object, e As EventArgs) Handles Button2.Click
  17. 重登確認 = False : Me.Close()
  18. End Sub
  19. End Class