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

Determine how a control got the focus

Total Hit ( 2344)

Rate this article:     Poor     Excellent 

 Submit Your Question/Comment about this article

Rating


 


At times it might be convenient to know how a given control got the focus, namely by means of the Tab key, an associated hotkey or a click of the mouse. You can learn this information through the GetKeyState API function, that returns the current state of a key. Here is a simple function that is meant to be called from within the GotFocus event of a control

Click here to copy the following block
Private Declare Function GetKeyState Lib "user32" Alias "GetKeyState" (ByVal _
  nVirtKey As Long) As Integer

Function GotFocusMethod() As Integer
  If GetKeyState(vbKeyTab) < 0 Then
    If (GetKeyState(vbKeyShift) < 0) Then
      ' Shift-Tab key is pressed
      GotFocusMethod = 4
    Else
      ' Tab key is pressed
      GotFocusMethod = 1
    End If
  ElseIf GetKeyState(vbKeyMenu) < 0 Then
    ' Alt key is pressed (hotkey activation)
    GotFocusMethod = 2
  ElseIf GetKeyState(vbLeftButton) < 0 Then
    ' mouse left button is pressed
    GotFocusMethod = 3
  End If
End Function

This function returns 1 if the control got the focus by mean of the Tab key, 2 if a hotkey was pressed, 3 if the mouse was clicked, 4 if Shift-Tab was pressed, 0 if it cannot determine the method used (probably programmatically through a SetFocus method).
Thanks to Scott B. Kardos for adding the code that tests the Shift-Tab key.



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.