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.

11 lines
329 B

Public Class frm_Status
Private Sub frm_Status_Load(sender As Object, e As EventArgs) Handles MyBase.Load
timer_status.Enabled = True
End Sub
Private Sub timer_status_Tick(sender As Object, e As EventArgs) Handles timer_status.Tick
frm_Main.Enabled = True
Me.Close()
End Sub
End Class