Advertisement
Guest User

Untitled

a guest
Sep 2nd, 2014
321
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. Public Class Form1
  2.  
  3. Private Sub btnInstall_Click(sender As Object, e As EventArgs) Handles btnInstall.Click
  4. ' Starts timer, hides install button, and plays gif/progress bar
  5. tmrTimer.Start()
  6. pBar.Value = 0
  7. btnInstall.Visible = False
  8. gifHacker.Visible = True
  9. gifHacker.Enabled = True
  10. pBar.Visible = True
  11. End Sub
  12.  
  13. Private Sub tmrTimer_Tick(sender As Object, e As EventArgs) Handles tmrTimer.Tick
  14. ' Stars timer
  15. pBar.Increment(1)
  16. tmrTimer.Interval = (1000)
  17. End Sub
  18. End Class
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement