Advertisement
Rythorian

Tutorial1

Nov 15th, 2024
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | Source Code | 0 0
  1. Public Class Form1
  2.  
  3.  
  4. Private Sub Timer1_Tick(sender As Object, e As EventArgs) Handles Timer1.Tick
  5. ProgressBar1.Increment(1)
  6. Label1.Text = ProgressBar1.Value & "% Installing Dark Chucky Virus...."
  7. If ProgressBar1.Value >= 100 Then
  8. ProgressBar1.Value = ProgressBar1.Value
  9. MsgBox("DARK CHUCKY VIRUS WILL DELETE SYSTEM FILES IN 24 HOURS")
  10. Timer1.Stop()
  11. End If
  12. End Sub
  13.  
  14. Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load
  15. Timer1.Start()
  16. End Sub
  17. End Class
  18.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement