[Tutorial] VB Tapper

Posts 115 of 28 · Page 1 of 2
[Tutorial] VB Tapper
Heya

Well i was thinking of maybe making a new tutorial everyday, maybe useful to some people. (Very noob friendly though.. Screenies too^^), I guess its time to get started.

This is a very basic tapper.

First off, i hope you got VB 2008.

1) Make a new 'Windows Form Application'


2) Add two buttons to the form.


3) Double-Click on the first button and enter this code:
Shell("NET START DHCP")
Basically that's the connect button, you can even type it in in notepad and make a .bat file.


4) Now double-click the second button and enter this code:
Shell("NET STOP DHCP")
As you can probably guess, thats the disconnect button, again, can be typed in notepad.


And your basically done, you can go ahead and run it by pressing F5 or save it by pressing on the bunch of floppy discs on top.

As previously mentioned, this is a very basic tapper, it doesnt automatically reconnect or anything, if you want me to show you how to add hotkeys, i could, but only if a few people want it . And this is also probably the first of a few tutorials, might make another one tomorrow.

A TUTORIAL A DAY KEEPS THE LEECHERS AWAY!
Wrong Section, this should be posted in the VB section.
dude i did everything like u said but when i run it and click disconnect it just falshes and does nothing can u help a lil
Quote Originally Posted by acess4 View Post
dude i did everything like u said but when i run it and click disconnect it just falshes and does nothing can u help a lil
Are you sure you have the right codes?
dude............

that's retarded easy...
I did that when i was like 12, but thanks for helping
i made it even better today
Like i said.. completely noob friendly, and totally simple.
Quote Originally Posted by lindosbert View Post
visit Web Cheats get free vips hack cracked
AKA Free cracked Viruses
hotkey
Here is the code to make a hot key, and tapper, give credits for the hotkeys if you plan on making a tapper.
Code:
Public Class Form1

    Private Sub Button1_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles Button1.Click
        Shell("NET START DHCP")
    End Sub

    Private Sub Button1_KeyDown(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyEventArgs) Handles Button1.KeyDown
        If e.KeyCode = Keys.F5 Then
            Button1.Enabled = True
        End If
    End Sub

    Private Sub Button2_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles Button2.Click
        Shell("NET STOP DHCP")
    End Sub

    Private Sub Button2_KeyDown(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyEventArgs) Handles Button2.KeyDown
        If e.KeyCode = Keys.F6 Then
            Button2.Enabled = True
        End If
    End Sub
End Class
lol well that's the simple way of adding hotkeys, and sadly, it doesnt always work, i was gonna teach people how to use the 'GetAsyncKeyState' method
does this work for laptops
Am i the only one who this doesn't work for? post another way?
Need Help
ok i built it but now ow to make it an .exe ?
Posts 115 of 28 · Page 1 of 2
This thread is closed for replies.

Similar Threads

Tags for this Thread

None

Need help?