Amine-AL

Code VB.NET TUTO Amine-AL

Feb 6th, 2014
254
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
VB.NET 0.57 KB | None | 0 0
  1.     Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
  2.         ProgressBar1.Increment(1)
  3.         If ProgressBar1.Value = ProgressBar1.Maximum Then
  4.             Timer1.Stop()
  5.             Timer1.Enabled = False
  6.             MsgBox("Victim's Password Is : facebook123456789")
  7.             ProgressBar1.Value = ProgressBar1.Minimum
  8.  
  9.         End If
  10.     End Sub
  11.  
  12.     Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
  13.         Timer1.Start()
  14.  
  15.     End Sub
  16. End Class
Advertisement
Add Comment
Please, Sign In to add comment