Ma sei sicuro che ti serva davvero questa funzione?
A me non sembra proprio.
mouse_event si usa per il mouse, non per la tastiera, e tu parli di tasti.
Secondo me:
- imposta KeyPreview del Form a True
- nella routine KeyDown() del Form metti il seguente codice:
codice:If KeyCode = vbKeyF2 Then cmdStart.Value = True ElseIf KeyCode = vbKeyF3 Then cmdStop.Value = True End If![]()