[Help]Hotkey Functions
I wanted to create this...
I know that it doesnt work but can someone tell me how to let GetAsyncKeyState get the Keys from ComboBox1 ?
Code:
Private Sub Timer2_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer2.Tick
Dim MouseMoverOn As Boolean
MouseMoverOn = GetAsyncKeyState(ComboBox1.Text)
If MouseMoverOn = True Then
Timer1.Enabled = True
End If
End Sub
x_textchanged