Can't trigger Keydown event

G

Gustaf

I got a form with a MultiPage control, and haven't been able to find a way to change tabs without using the mouse. I'd like to use some key combination, perhaps Ctrl + vbKeyLeft or vbKeyRight. Ideally the key command should work no matter what control has focus. How does all that sound in terms of usability and best practices?

The immediate problem now is that the code I wrote won't trigger switching the tabs. There are 2 tabs:

' Allow shifting tabs with arrow keys
Private Sub MultiPage1_KeyDown(ByVal KeyCode As MSForms.ReturnInteger, _
ByVal Shift As Integer)

If Shift = 2 And KeyCode = vbKeyLeft Then
If MultiPage1.Value = 1 Then
Exit Sub
Else
MultiPage1.Value = 0
End If
End If

If Shift = 2 And KeyCode = vbKeyRight Then
If MultiPage1.Value = 0 Then
Exit Sub
Else
MultiPage1.Value = 1
End If
End If

End Sub

Hope someone can spot the error here.

Gustaf
 
R

RB Smissaert

This will work better :)

Private Sub MultiPage1_KeyDown(ByVal KeyCode As MSForms.ReturnInteger, _
ByVal Shift As Integer)

If Shift = 2 And KeyCode = vbKeyLeft Then
If MultiPage1.Value = 0 Then
Exit Sub
Else
MultiPage1.Value = 0
End If
End If

If Shift = 2 And KeyCode = vbKeyRight Then
If MultiPage1.Value = 1 Then
Exit Sub
Else
MultiPage1.Value = 1
End If
End If

End Sub


RBS
 
G

Gustaf

Thank you, it works, but only if I put the event on the textbox that gets focus when the form loads rather than the multipage. It seems there's no way to give focus to the multipage or form itself. Is there a way to attach the event to all controls on the form, without actually writing separate events for each control?

Gustaf
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top