Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Private Sub Form_Load()
Me.KeyPreview = True
End Sub
Private Sub form_keydown(KeyCode As Integer, Shift As Integer)
Select Case KeyCode
Case vbKeyF6 'Spell Check will not be invoked
KeyCode = 0
MsgBox "Pop goes thw weasle!"
End Select
End Sub