d4pr3d4t0r (03-20-2010),t1len80 (03-22-2010)
srry guys, name of this thread how to make taper. it's wrong. name its how to make tapper xD
This+AVA=win
Make a new form
put in 2 timers
copy and paste this source code
Code:
[php]Public Class Form1
Public Declare Function GetAsyncKeyState Lib "User32" (ByVal vKey As Long) As Integer
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
Timer1.Enabled = True
Timer2.Enabled = True
End Sub
Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
Dim Hotkey1 As Boolean
Hotkey1 = GetAsyncKeyState(Keys.F11)
If Hotkey1 = True Then
Timer1.Enabled = True
Shell("NET START DHCP")
End If
End Sub
Private Sub Timer2_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer2.Tick
Dim Hotkey2 As Boolean
Hotkey2 = GetAsyncKeyState(Keys.F10)
If Hotkey2 = True Then
Timer2.Enabled = True
Shell("NET STOP DHCP")
End If
End Sub
End Class[/php]
f10=disconnect
f11=reconnect
There y'all go
Last edited by /b/oss; 03-20-2010 at 02:14 AM.
d4pr3d4t0r (03-20-2010),t1len80 (03-22-2010)
Nice Tutorial. Next time, put PHP or Code tags around the code.
allright
i will do that right away
PHP tags are advised, since they colour words in VB style, so it is easier to comprehend.
afff.... ok... sec...
GJ =D. Hope to see more tutorials from you in future =D
hey how to use it.. can u please make a tutorial on how to used that?
uhh... accoually.. do you know what is tapper?
ow btw ili check my /161-tutorials/126527-basic-chams-tut-any-renderer.html
Lol i saw that too, nice job. But i don't code C++, which is ashame, still learning. I do VB atm.
Uhm, it's a good tut, but it's exactly the same as the 1 i found earlier on another VB site, so kind of a leech:P
Nontheless great that you posted it here
(firstPostHere)
Last edited by d4pr3d4t0r; 03-20-2010 at 06:33 AM.
this is spam dudefor saying thank's is there button
t1len80 (03-21-2010)