mchiappinam

Para o Rick_3D

Oct 28th, 2012
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. Public Class Form1
  2.  
  3.     Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
  4.         progressbar1.value = "100"
  5.     End Sub
  6.  
  7.     Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
  8.         If ProgressBar1.Value = "100" Then
  9.             Form2.Show()
  10.         End If
  11.     End Sub
  12.  
  13.     Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
  14.         Timer1.Start()
  15.     End Sub
  16. End Class
Advertisement
Add Comment
Please, Sign In to add comment