1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
| 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()
ProgressBar1.Enabled()
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 ProgressBar1.Click
ProgressBar1.Minimum = 0
ProgressBar1.Maximum = 100
ProgressBar1.Visible = True
End Sub
End Class |
Partager