Advertisement
kshadow22

Visual Basic 2008 Hotkeys (Regular And Double)

Dec 7th, 2013
178
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. *HOTKEYS
  2. Object_KEYDOWN------------------
  3. If e.KeyCode = Keys.(Hot Key You Want) Then
  4. (Command  you want)
  5. End If
  6.  
  7. Or
  8.  
  9. If e.KeyCode = Keys.(Hot Key You Want) And Keys.(Hot Key You Want) Then
  10. (Command  you want)
  11. End If
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement