Questo sito utilizza cookies solo per scopi di autenticazione sul sito e nient'altro. Nessuna informazione personale viene tracciata. Leggi l'informativa sui cookies.
Username: Password: oppure
ProgressBar Rossa fixata - Form2.vb

Form2.vb

Caricato da:
Scarica il programma completo

  1. Public Class Form2
  2.  
  3.     Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
  4.         ProgressBar1.Increment(1)
  5.         If ProgressBar1.Value = 100 Then
  6.             Form1.Timer1.Start()
  7.             Me.Close()
  8.         End If
  9.     End Sub
  10.  
  11.     Private Sub Form2_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
  12.  
  13.     End Sub
  14. End Class