if you goto the subform and add a helper sub.
Code:
Public Sub Helper(Keycode As Integer, shift As Integer)
If Keycode = KeyCodeConstants.vbKeyPageDown And shift = 1 Then
Me.Parent.Form.MoveNext
End If
End Sub
and then for the KeyDown Event, Pass the event to the helper.
like for the keydown event for field1
Code:
Private Sub Field1_KeyDown(Keycode As Integer, shift As Integer)
Call Helper(Keycode, shift)
End Sub
Now you can Press Shift Pagedown in the field1. and have it force the parent record to goto the next record.