Advertisement
Guest User

Untitled

a guest
Nov 22nd, 2014
165
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.85 KB | None | 0 0
  1. Public Class Form1
  2. Dim HNUM As Integer
  3. Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
  4. My.Computer.Audio.Play(My.Resources.hacker, _
  5. AudioPlayMode.Background)
  6. Timer1.Start()
  7. Timer2.Start()
  8. End Sub
  9.  
  10. Private Sub Timer1_Tick(sender As Object, e As EventArgs) Handles Timer1.Tick
  11. HNUM = HNUM + 1
  12. If HNUM < 16 Then
  13. TextBox1.Text = "01110110010100101010101001010101010010101001010101010101001010010101010101010011 HACKING " & HNUM & " DATABASE(S) 011101100101001010101010010101010100101010010101010101010010"
  14. End If
  15. If HNUM > 15 Then
  16. TextBox1.Text = "dreaNMING IN DIDGTAL"
  17. End If
  18. If HNUM > 20 Then
  19. TextBox1.Text = "LIVG IN REAL TIME"
  20. End If
  21. If HNUM > 21 + 5 Then
  22. TextBox1.Text = "THNIKIGN IN BINARY"
  23. End If
  24. If HNUM > 21 + 10 Then
  25. TextBox1.Text = "TALKING IN OUR TE"
  26. End If
  27. If HNUM > 21 + 16 Then
  28. TextBox1.Text = "dreaNMING IN DIDGTAL"
  29. End If
  30. If HNUM > 21 + 22 Then
  31. TextBox1.Text = "LIVG IN REAL TIME"
  32. End If
  33. If HNUM > 21 + 27 Then
  34. TextBox1.Text = "THNIKIGN IN BINARY"
  35. End If
  36. If HNUM > 21 + 33 Then
  37. TextBox1.Text = "TALKING IN OUR TE"
  38. End If
  39. If HNUM > 21 + 35 Then
  40. TextBox1.Text = "TWELCOME TO OUR WORLD"
  41. End If
  42. If HNUM > 21 + 38 Then
  43. Label1.Show()
  44. Label2.Show()
  45. Label3.Show()
  46. Label4.Show()
  47. PictureBox1.Show()
  48. CheckBox1.Show()
  49. End If
  50. End Sub
  51.  
  52. Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load
  53.  
  54. End Sub
  55.  
  56. Private Sub Timer2_Tick(sender As Object, e As EventArgs) Handles Timer2.Tick
  57. Dim rnd1 As New Random
  58. Dim mColor, mColor2 As Color
  59. ProgressBar1.Value = CStr(RandomNum(0, 100))
  60. mColor = Color.FromArgb(rnd1.Next(0, 256), rnd1.Next(0, 256), rnd1.Next(0, 256))
  61. mColor2 = Color.FromArgb(rnd1.Next(0, 256), rnd1.Next(0, 256), rnd1.Next(0, 256))
  62. Me.ForeColor = mColor
  63. TextBox1.ForeColor = mColor
  64. If CheckBox1.Visible = True Then
  65. TextBox1.BackColor = mColor2
  66. End If
  67. Label1.Text = CStr(RandomNum(0, 2))
  68. Label2.Text = CStr(RandomNum(0, 2))
  69. Label3.Text = CStr(RandomNum(0, 2))
  70. Label4.Text = CStr(RandomNum(0, 2))
  71. If CheckBox1.Checked = False Then
  72. CheckBox1.Checked = True
  73. Else
  74. CheckBox1.Checked = False
  75. End If
  76.  
  77. End Sub
  78. Private Function RandomNum(ByVal Lowest As Long, ByVal Highest As Long) As Long
  79. RandomNum = Int((Highest - Lowest) * Rnd() + Lowest)
  80. End Function
  81. End Class
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement