add keybinding for profile selector

This commit is contained in:
Jonathan Jenne
2023-12-19 10:12:05 +01:00
parent 75bfd81ad4
commit 64a6cba017
7 changed files with 22 additions and 22 deletions

View File

@@ -2927,4 +2927,11 @@ Public Class frmIndex
MsgBox(ex.Message)
End Try
End Sub
Private Sub ComboboxDoctype_KeyUp(sender As Object, e As KeyEventArgs) Handles ComboboxDoctype.KeyUp
If e.KeyCode = Keys.F2 Then
Dim oCombo As SearchLookUpEdit = sender
oCombo.ShowPopup()
End If
End Sub
End Class