1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
| Public Class Form2
Private Sub Form2_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
TimerFormAffiche.Interval = 5000
TimerFormAffiche.Enabled = True
TimerFormAffiche.Start()
End Sub
Private Sub TimerFormAffiche_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles TimerFormAffiche.Tick
' Fermeture de cette fenêtre.
Me.Close()
End Sub
Private Sub ProgressBar1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Prog.Click
Prog.Value = 0
Prog.Visible = True
End Sub
End Class |
Partager