gostaria de saber que é possivel colocar um função na tecla ALT
e como faço para colocar?
e como faço para colocar?
Private Sub Form_KeyDown(KeyCode As Integer, Shift As Integer)
If KeyCode = 18 Then
Call SuaFunção
End If
End Sub
Private Sub Form_KeyDown(KeyCode As Integer, Shift As Integer)
If KeyCode = 18 Then
Me.FormHeader.Visible = Not Me.FormHeader.Visible
KeyCode = 0
End If
End Sub