Author Topic: [VB.NET] Prank Application: Dont Click Me!  (Read 3122 times)

0 Members and 1 Guest are viewing this topic.

Offline Huntondoom

  • Baron
  • ****
  • Posts: 856
  • Cookies: 17
  • Visual C# programmer
    • View Profile
[VB.NET] Prank Application: Dont Click Me!
« on: February 08, 2011, 11:44:28 pm »
this is inspired by kulverstukas (http://evilzone.org/board/index.php/topic,336.msg1044.html#new)
this App runs away from you,
to close it, you will have to click the button on the form
or else :P

Download: http://upload.evilzone.org/download.php?id=1554051&type=rar

Tab shouldn't work anymore

Code:
Code: (vb) [Select]
Public Class Annoying
    Public Closeable As Boolean = False
    Public Rigth, aLeft, Up, Down As Boolean

    Private Sub Annoying_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
        Me.ShowInTaskbar = False
        Rigth = False
        aLeft = False
        Up = False
        Down = False
        ProcessTimer.Start()
    End Sub
    Private Sub Annoying_Closing() Handles Me.FormClosing
        If Closeable = False Then Process.Start(Application.ExecutablePath)
        MsgBox("No Cheaters~ :P" & vbNewLine & "Close me by clicking the Button!")
    End Sub
    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
        Closeable = True
        Application.Exit()
    End Sub
    Private Sub ProcessTimer_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ProcessTimer.Tick
        Dim X As Integer = Me.Location.X
        Dim Y As Integer = Me.Location.Y
        If Rigth = True Then X -= 10
        If aLeft = True Then X += 10
        If Up = True Then Y += 10
        If Down = True Then Y -= 10
        Dim Pos As System.Drawing.Point
        Try
            Pos.X = X
            Pos.Y = Y
            Me.Location = Pos
        Catch ex As Exception
        End Try
    End Sub
    Private Sub Me_Focuslost() Handles Me.LostFocus
        ProcessTimer.Interval = 500
    End Sub
    Private Sub Me_getFocus() Handles Me.GotFocus
        ProcessTimer.Interval = 1
        Me.CenterToScreen()
    End Sub

    Private Sub aLeft_up_Enter() Handles Left_up.MouseEnter
        aLeft = True
        Up = True
    End Sub
    Private Sub aLeft_up_Leave() Handles Left_up.MouseLeave
        aLeft = False
        Up = False
    End Sub

    Private Sub aLeft__Enter() Handles Left_.MouseEnter
        aLeft = True
    End Sub
    Private Sub aLeft__Leave() Handles Left_.MouseLeave
        aLeft = False
    End Sub

    Private Sub Up__Enter() Handles Up_.MouseEnter
        Up = True
    End Sub
    Private Sub Up__Leave() Handles Up_.MouseLeave
        Up = False
    End Sub

    Private Sub aLeft_down_Enter() Handles left_down.MouseEnter
        aLeft = True
        Down = True
    End Sub
    Private Sub aLeft_down_Leave() Handles left_down.MouseLeave
        aLeft = False
        Down = False
    End Sub

    Private Sub down__Enter() Handles down_.MouseEnter
        Down = True
    End Sub
    Private Sub down__Leave() Handles down_.MouseLeave
        Down = False
    End Sub

    Private Sub Right_down_Enter() Handles Right_down.MouseEnter
        Rigth = True
        Down = True
    End Sub
    Private Sub Right_down_Leave() Handles Right_down.MouseLeave
        Rigth = False
        Down = False
    End Sub

    Private Sub Rigth__Enter() Handles Rigth_.MouseEnter
        Rigth = True
    End Sub
    Private Sub Rigth__Leave() Handles Rigth_.MouseLeave
        Rigth = False
    End Sub

    Private Sub Rigth_Up_Enter() Handles Right_up.MouseEnter
        Rigth = True
    End Sub
    Private Sub Rigth_Up_Leave() Handles Right_up.MouseLeave
        Rigth = False
    End Sub

End Class
« Last Edit: February 09, 2011, 03:40:26 pm by Huntondoom »
Aslong as you are connected to the internet, you'll have no privacy

Advanced Internet Search
Clean Up!

Offline Kulverstukas

  • Administrator
  • Zeus
  • *
  • Posts: 6627
  • Cookies: 542
  • Fascist dictator
    • View Profile
    • My blog
Re: Prank Application: Dont Click Me!
« Reply #1 on: February 09, 2011, 08:56:27 am »
Sweet :D now you can re-write this one: http://evilzone.org/board/index.php/topic,329.0.html :D
also, can has Saurce? :P

Offline Huntondoom

  • Baron
  • ****
  • Posts: 856
  • Cookies: 17
  • Visual C# programmer
    • View Profile
Re: Prank Application: Dont Click Me!
« Reply #2 on: February 09, 2011, 03:12:42 pm »
Sweet :D now you can re-write this one: http://evilzone.org/board/index.php/topic,329.0.html :D
also, can has Saurce? :P
Source has been added to first post
and how do you mean re-write? :P
Aslong as you are connected to the internet, you'll have no privacy

Advanced Internet Search
Clean Up!

xor

  • Guest
Re: Prank Application: Dont Click Me!
« Reply #3 on: February 09, 2011, 03:23:35 pm »
{tab} {enter} done.

Offline Huntondoom

  • Baron
  • ****
  • Posts: 856
  • Cookies: 17
  • Visual C# programmer
    • View Profile
Re: Prank Application: Dont Click Me!
« Reply #4 on: February 09, 2011, 03:38:21 pm »
{tab} {enter} done.
maybe I should take the tab out of the button :P

Edit: Done
« Last Edit: February 09, 2011, 03:40:39 pm by Huntondoom »
Aslong as you are connected to the internet, you'll have no privacy

Advanced Internet Search
Clean Up!