[HELP]=HotkeysHow can I set hotkeys in the form? for example: If I press the Numpud1, then there is this thing, etc.HELP HELP me^^
under form1 Code: Private Declare Function GetAsyncKeyState Lib "user32"(ByVal vkey As Long) As Integer For a timer, make it start at form1.load or w/e Code: Dim F9 As Boolean F9 = GetAsyncKeyState(Keys.F9) If F9 = True then 'main function of your code. You can change f9 to anything you want.