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_KeyDown(KeyCode As Integer, Shift As Integer)
If KeyCode = vbKeyS And Shift = 2 Then
MsgBox "Ctrl and S Was pressed"
End If
End Sub
[blue]Private Sub Form_KeyDown(KeyCode As Integer, Shift As Integer)
If KeyCode = vbKeyS And Shift = [b]vbCtrlMask[/b] Then
MsgBox "Ctrl and S Was pressed"
End If
End Sub[/blue]