Quote Originally Posted by Vectris View Post
If you register the Spacebar as a hotkey then it will no longer do that.
What do you mean by register?

This is what I have:

Code:
    Private Sub Form1_KeyDown(ByVal sender As System.Object, ByVal e As System.Windows.Forms.KeyEventArgs) Handles MyBase.KeyDown

        If e.KeyCode = Keys.Space Then
            swGame.stop()
        End If

    End Sub
However, when I click another button and then press the spacebar it stops the clock but also 'presses' the button.


Major