Originariamente inviato da IAL32
Potresti provare ad aggiungere le "HotKeys":
http://www.dreamincode.net/forums/to...global-hotkey/
http://www.sythe.org/visual-basic-6-...ys-vb-net.html
http://social.msdn.microsoft.com/For...-416a7158c6ba/
http://www.unfair-gamers.com/forum/s...ad.php?tid=575
http://www.hackcommunity.com/Thread-...o-your-program

Come ho potuto leggere da questi articoli, loro dichiarano la seguente variabile:
codice:
Private Declare Function GetAsyncKeyState Lib "user32" (ByVal vKey As Long) As Integer
dalla libreria user32, per poi controllare, ad ogni tick ti un eventuale timer:
codice:
Dim hotkey1 As String
hotkey1 = GetAsyncKeyState(Keys.F2)
If hotkey1 = True Then
MsgBox("HotKey:" & Keys.F2.ToString())
End If
controllare se la hotkey č stata premuta.
Grazie ci provo