Atlanta Custom Software Development 

 
   Search        Code/Page
 

User Login
Email

Password

 

Forgot the Password?
Services
» Web Development
» Maintenance
» Data Integration/BI
» Information Management
Programming
  Database
Automation
OS/Networking
Graphics
Links
Tools
» Regular Expr Tester
» Free Tools

How to detect system activity for mouse and keyboard

Total Hit ( 2607)

Rate this article:     Poor     Excellent 

 Submit Your Question/Comment about this article

Rating


 


Click here to copy the following block
Option Explicit

'===========================================================
'TYPE
'===========================================================
Private Type POINTAPI
x As Integer
y As Integer
End Type
'===========================================================
'API
'===========================================================
Private Declare Sub GetCursorPos Lib "user32.dll" (lpPoint As POINTAPI)
Private Declare Function GetAsyncKeyState Lib "user32.dll" (ByVal vKey As Long) As Integer
'===========================================================
'Variables
'===========================================================
Private posOld As POINTAPI
Private posNew As POINTAPI

'===========================================================
'InputCheck
'===========================================================
Public Function InputCheck() As Boolean
  Dim i As Integer

  'Get the current mouse cursor coordinates
  Call GetCursorPos(posNew)
  'Compare with old coordinates
  If ((posNew.x <> posOld.x) Or (posNew.y <> posOld.y)) Then
    posOld = posNew
    InputCheck = True
    Exit Function
  End If
  'Check keys state
  For i = 0 To 255
    If (GetAsyncKeyState(i) And &H8001) <> 0 Then
      InputCheck = True
      Exit Function
    End If
  Next i
  InputCheck = False
End Function

Click here to copy the following block
'Create a Form with a Label and a Timer
Option Explicit

Private Sub Timer1_Timer()
  Label1.Caption = InputCheck
End Sub


Submitted By : Nayan Patel  (Member Since : 5/26/2004 12:23:06 PM)

Job Description : He is the moderator of this site and currently working as an independent consultant. He works with VB.net/ASP.net, SQL Server and other MS technologies. He is MCSD.net, MCDBA and MCSE. In his free time he likes to watch funny movies and doing oil painting.
View all (893) submissions by this author  (Birth Date : 7/14/1981 )


Home   |  Comment   |  Contact Us   |  Privacy Policy   |  Terms & Conditions   |  BlogsZappySys

© 2008 BinaryWorld LLC. All rights reserved.